{"raw_statement":[{"iden":"problem statement","content":"You are given an integer $N$. If $N$ is between $-2^{31}$ and $2^{31}-1$ (inclusive), print `Yes`; otherwise, print `No`."},{"iden":"constraints","content":"*   $-2^{63} \\leq N < 2^{63}$\n*   $N$ is an integer."},{"iden":"input","content":"Input is given from Standard Input in the following format:\n\n$N$"},{"iden":"sample input 1","content":"10"},{"iden":"sample output 1","content":"Yes\n\n$10$ is between $-2^{31}$ and $2^{31}-1$, so `Yes` should be printed."},{"iden":"sample input 2","content":"\\-9876543210"},{"iden":"sample output 2","content":"No\n\n$-9876543210$ is less than $-2^{31}$, so `No` should be printed."},{"iden":"sample input 3","content":"483597848400000"},{"iden":"sample output 3","content":"No\n\n$483597848400000$ is greater than $2^{31}-1$, so `No` should be printed."}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}