#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 "NN 本" for a positive integer NN not exceeding 999999 is as follows:

  • hon when the digit in the one's place of NN is 22, 44, 55, 77, or 99;
  • pon when the digit in the one's place of NN is 00, 11, 66 or 88;
  • bon when the digit in the one's place of NN is 33.

Given NN, print the pronunciation of "本" in the phrase "NN 本".

猫咪 Snuke 想玩一款名为 tCoder 的流行日语游戏,因此 Iroha 决定教它日语。

用日语数铅笔时,计数器单词 "本 "会跟在数字后面。这个词的发音因数字而异。具体来说," NN "中 "本 "的发音是" NN "。本 "在不超过 999999 的正整数 NN 中的发音如下:

  • NN 的个位上的数字为 2244557799 时为 "hon";
  • NN 的个位上的数字是 00116688 时,出现 "pon";
  • NN 的个位上的数字是 33 时,即为 "bon"。

给定 NN ,打印" NN "中 "本 "的读音。本".

输入格式

$N$

输出格式

打印答案。

样例 #1

样例输入 #1

16

样例输出 #1

pon

样例 #2

样例输入 #2

2

样例输出 #2

hon

样例 #3

样例输入 #3

183

样例输出 #3

bon

说明

数据规模与约定

  • NN 是不超过 999999 的正整数。

样例 11 解释

1616 的个位上的数字是 66 ,因此" 1616 "中的 "本 "读作 "pon"。本 "读作 "pon"。