869. Learning To Say Numbers
0
Hard
In his mathematics class Kartik Bhaiya was teaching to his students about the English words representation of non-negative integers.
Om being a curious computer science student decides to write a program to convert non-negative integers to English words representation. Can you help him out?
Om being a curious computer science student decides to write a program to convert non-negative integers to English words representation. Can you help him out?
Input Format
A single integer N.
Output Format
Print the English words representation of the number.
Example
Input
145
Output
One Hundred Forty Five
Constraints
0<=N<=109
Loading...
View Submissions
Console