{"raw_statement":[{"iden":"problem statement","content":"You are given a three-digit positive integer $N$.  \nDetermine whether $N$ is a _palindromic number_.  \nHere, a palindromic number is an integer that reads the same backward as forward in decimal notation."},{"iden":"constraints","content":"*   $100≤N≤999$\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":"575"},{"iden":"sample output 1","content":"Yes\n\n$N=575$ is also $575$ when read backward, so it is a palindromic number. You should print `Yes`."},{"iden":"sample input 2","content":"123"},{"iden":"sample output 2","content":"No\n\n$N=123$ becomes $321$ when read backward, so it is not a palindromic number. You should print `No`."},{"iden":"sample input 3","content":"812"},{"iden":"sample output 3","content":"No"}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}