{"raw_statement":[{"iden":"problem statement","content":"An integer $N$ is a multiple of $9$ if and only if the sum of the digits in the decimal representation of $N$ is a multiple of $9$.\nDetermine whether $N$ is a multiple of $9$."},{"iden":"constraints","content":"*   $0 \\leq N < 10^{200000}$\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":"123456789"},{"iden":"sample output 1","content":"Yes\n\nThe sum of these digits is $1+2+3+4+5+6+7+8+9=45$, which is a multiple of $9$, so $123456789$ is a multiple of $9$."},{"iden":"sample input 2","content":"0"},{"iden":"sample output 2","content":"Yes"},{"iden":"sample input 3","content":"31415926535897932384626433832795028841971693993751058209749445923078164062862089986280"},{"iden":"sample output 3","content":"No"}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}