{"raw_statement":[{"iden":"problem statement","content":"Given an integer $X$ between $-10^{18}$ and $10^{18}$, inclusive, print $\\left\\lceil \\dfrac{X}{10} \\right\\rceil$.  \nHere, $\\left\\lceil a \\right\\rceil$ denotes the smallest integer not less than $a$."},{"iden":"constraints","content":"*   $-10^{18} \\leq X \\leq 10^{18}$\n*   $X$ is an integer."},{"iden":"input","content":"The input is given from Standard Input in the following format:\n\n$X$"},{"iden":"sample input 1","content":"27"},{"iden":"sample output 1","content":"3\n\nThe integers not less than $\\frac{27}{10} = 2.7$ are $3, 4, 5, \\dots$. Among these, the smallest is $3$, so $\\left \\lceil \\frac{27}{10} \\right \\rceil = 3$."},{"iden":"sample input 2","content":"\\-13"},{"iden":"sample output 2","content":"\\-1\n\nThe integers not less than $\\frac{-13}{10} = -1.3$ are all positive integers, $0$, and $-1$. Among these, the smallest is $-1$, so $\\left \\lceil \\frac{-13}{10} \\right \\rceil = -1$."},{"iden":"sample input 3","content":"40"},{"iden":"sample output 3","content":"4\n\nThe smallest integer not less than $\\frac{40}{10} = 4$ is $4$ itself."},{"iden":"sample input 4","content":"\\-20"},{"iden":"sample output 4","content":"\\-2"},{"iden":"sample input 5","content":"123456789123456789"},{"iden":"sample output 5","content":"12345678912345679"}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}