{"raw_statement":[{"iden":"problem statement","content":"A **326-like number** is a three-digit positive integer where the product of the hundreds and tens digits equals the ones digit.\nFor example, $326,400,144$ are 326-like numbers, while $623,777,429$ are not.\nGiven an integer $N$, find the smallest 326-like number greater than or equal to $N$. It always exists under the constraints."},{"iden":"constraints","content":"*   $100 \\leq N \\leq 919$\n*   $N$ is an integer."},{"iden":"input","content":"The input is given from Standard Input in the following format:\n\n$N$"},{"iden":"sample input 1","content":"320"},{"iden":"sample output 1","content":"326\n\n$320,321,322,323,324,325$ are not 326-like numbers, while $326$ is a 326-like number."},{"iden":"sample input 2","content":"144"},{"iden":"sample output 2","content":"144\n\n$144$ is a 326-like number."},{"iden":"sample input 3","content":"516"},{"iden":"sample output 3","content":"600"}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}