#ABC168A. ∴ (Therefore)
∴ (Therefore)
题目描述
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 " 本" for a positive integer not exceeding is as follows:
hon
when the digit in the one's place of is , , , , or ;pon
when the digit in the one's place of is , , or ;bon
when the digit in the one's place of is .
Given , print the pronunciation of "本" in the phrase " 本".
猫咪 Snuke 想玩一款名为 tCoder 的流行日语游戏,因此 Iroha 决定教它日语。
用日语数铅笔时,计数器单词 "本 "会跟在数字后面。这个词的发音因数字而异。具体来说," "中 "本 "的发音是" "。本 "在不超过 的正整数 中的发音如下:
- 当 的个位上的数字为 、 、 、 或 时为 "hon";
- 当 的个位上的数字是 、 、 或 时,出现 "pon";
- 当 的个位上的数字是 时,即为 "bon"。
给定 ,打印" "中 "本 "的读音。本".
输入格式
$N$
输出格式
打印答案。
样例 #1
样例输入 #1
16
样例输出 #1
pon
样例 #2
样例输入 #2
2
样例输出 #2
hon
样例 #3
样例输入 #3
183
样例输出 #3
bon
说明
数据规模与约定
- 是不超过 的正整数。
样例 解释
的个位上的数字是 ,因此" "中的 "本 "读作 "pon"。本 "读作 "pon"。