∴ (Therefore)

AtCoder
IDabc168_a
Time2000ms
Memory256MB
Difficulty
The cat Snuke wants to play a popular Japanese game called ÅtCoder, so Iroha has decided to teach him Japanese. When 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: * `hon` when the digit in the one's place of $N$ is $2$, $4$, $5$, $7$, or $9$; * `pon` when the digit in the one's place of $N$ is $0$, $1$, $6$ or $8$; * `bon` when the digit in the one's place of $N$ is $3$. Given $N$, print the pronunciation of "本" in the phrase "$N$ 本". ## Constraints * $N$ is a positive integer not exceeding $999$. ## Input Input is given from Standard Input in the following format: $N$ [samples]
Samples
Input #1
16
Output #1
pon

The digit in the one's place of $16$ is $6$, so the "本" in "$16$ 本" is pronounced `pon`.
Input #2
2
Output #2
hon
Input #3
183
Output #3
bon
API Response (JSON)
{
  "problem": {
    "name": "∴ (Therefore)",
    "description": {
      "content": "The cat Snuke wants to play a popular Japanese game called ÅtCoder, so Iroha has decided to teach him Japanese. When counting pencils in Japanese, the counter word \"本\" follows the number. The pronunci",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "abc168_a"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "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 pronunci...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments