#ABC271A. [ABC271A] 484558

[ABC271A] 484558

Score : 100100 points

Problem Statement

In the hexadecimal system, where the digits ABCDEF corresponding to 10,11,12,13,1410,11,12,13,14, and 1515 are used in addition to 0123456789, every integer between 00 and 255255 is represented as a 11- or 22-digit numeral. For example, 00 and 1212 are represented as 11-digit hexadecimal numerals 0 and C; 9999 and 255255 are represented as 22-digit hexadecimals 63 and FF.

Given an integer NN between 00 and 255255, convert it to an exactly two-digit hexadecimal numeral, prepending leading 0s if necessary.

Notes

The judge is case-sensitive. Specifically, you cannot use abcdef as hexadecimal digits instead of ABCDEF.

Constraints

  • 0N2550 \leq N \leq 255
  • NN is an integer.

Input

The input is given from Standard Input in the following format:

NN

Output

Print the answer.

99
63

9999 is represented as 63 in hexadecimal.

12
0C

1212 is represented as C in hexadecimal. Since we ask you to convert it to a two-digit hexadecimal numeral, the answer is 0C, where 0 is prepended to C.

0
00
255
FF