{"raw_statement":[{"iden":"problem statement","content":"You are given two positive integers $a$ and $b$. Let $x$ be the average of $a$ and $b$. Print $x$ rounded up to the nearest integer."},{"iden":"constraints","content":"*   $a$ and $b$ are integers.\n*   $1 \\leq a, b \\leq 100$"},{"iden":"input","content":"Input is given from Standard Input in the following format:\n\n$a$ $b$"},{"iden":"sample input 1","content":"1 3"},{"iden":"sample output 1","content":"2\n\nThe average of $1$ and $3$ is $2.0$, and it will be rounded up to the nearest integer, $2$."},{"iden":"sample input 2","content":"7 4"},{"iden":"sample output 2","content":"6\n\nThe average of $7$ and $4$ is $5.5$, and it will be rounded up to the nearest integer, $6$."},{"iden":"sample input 3","content":"5 5"},{"iden":"sample output 3","content":"5"}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}