{"raw_statement":[{"iden":"problem statement","content":"Given an integer or a decimal $X$, round it down to an integer and print the result."},{"iden":"constraints","content":"*   $0 \\le X \\le 10^{100}$\n*   $X$ is an integer or a decimal with at most $100$ digits after the decimal point, without unnecessary leading zeros."},{"iden":"input","content":"Input is given from Standard Input in the following format:\n\n$X$"},{"iden":"sample input 1","content":"5.90"},{"iden":"sample output 1","content":"5\n\nWe round down $5.90$ to an integer, $5$, and print it as an integer. Non-integer outputs such as `5.0` will be judged as incorrect."},{"iden":"sample input 2","content":"0"},{"iden":"sample output 2","content":"0\n\nThere may be no decimal point in $X$."},{"iden":"sample input 3","content":"84939825309432908832902189.9092309409809091329"},{"iden":"sample output 3","content":"84939825309432908832902189\n\nTake care when handling large numbers."}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}