{"raw_statement":[{"iden":"problem statement","content":"The cat Snuke wants to play a popular Japanese game called ÅtCoder, so Iroha has decided to teach him Japanese.\nWhen counting pencils in Japanese, the counter word \"本\" follows the number. The pronunciation of this word varies depending on the number. Specifically, the pronunciation of \"本\" in the phrase \"$N$ 本\" for a positive integer $N$ not exceeding $999$ is as follows:\n\n*   `hon` when the digit in the one's place of $N$ is $2$, $4$, $5$, $7$, or $9$;\n*   `pon` when the digit in the one's place of $N$ is $0$, $1$, $6$ or $8$;\n*   `bon` when the digit in the one's place of $N$ is $3$.\n\nGiven $N$, print the pronunciation of \"本\" in the phrase \"$N$ 本\"."},{"iden":"constraints","content":"*   $N$ is a positive integer not exceeding $999$."},{"iden":"input","content":"Input is given from Standard Input in the following format:\n\n$N$"},{"iden":"sample input 1","content":"16"},{"iden":"sample output 1","content":"pon\n\nThe digit in the one's place of $16$ is $6$, so the \"本\" in \"$16$ 本\" is pronounced `pon`."},{"iden":"sample input 2","content":"2"},{"iden":"sample output 2","content":"hon"},{"iden":"sample input 3","content":"183"},{"iden":"sample output 3","content":"bon"}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}