{"raw_statement":[{"iden":"problem statement","content":"You are given a real number $X$, which is representable using at most three decimal digits, with three decimal digits.  \nRound $X$ to the nearest integer and print the result."},{"iden":"constraints","content":"*   $0 \\leq X < 100$\n*   $X$ is representable using at most three decimal digits.\n*   $X$ has three decimal digits in input."},{"iden":"input","content":"Input is given from Standard Input in the following format:\n\n$X$"},{"iden":"sample input 1","content":"3.456"},{"iden":"sample output 1","content":"3\n\nThe digit in the first decimal place of $3.456$ is $4$, so we should round it down to $3$."},{"iden":"sample input 2","content":"99.500"},{"iden":"sample output 2","content":"100"},{"iden":"sample input 3","content":"0.000"},{"iden":"sample output 3","content":"0"}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}