100 #ABC168A. [ABC168A] ∴ (Therefore)

[ABC168A] ∴ (Therefore)

Score: 100100 points

Problem Statement

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 本".

Constraints

  • NN is a positive integer not exceeding 999999.

Input

Input is given from Standard Input in the following format:

NN

Output

Print the answer.

16
pon

The digit in the one's place of 1616 is 66, so the "本" in "1616 本" is pronounced pon.

2
hon
183
bon