476. Learning To Say Numbers

0

Hard

Kartik Bhaiya, a mathematics teacher, is instructing his students on how to represent non-negative integers in English words. Om, a curious computer science student, wants to write a program that converts non-negative integers into their English word representations. Can you assist him?

Input Format

Provide a single integer N.

Output Format

Print the English word representation of the given number.

Example

Input

145

Output

One Hundred Forty Five

Constraints

0<=N<=109
Loading...

View Submissions

Console