Problem2188--【入门】汉译英

2188: 【入门】汉译英

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MiB

Description

输入某个整数,如果输入的整数在1-9范围内,则输出相对应的单词,否则输出'out'

提示: 
数字  对应 单词 
 1             one 
 2             two 
 3            three  
 4            four  
 5            five  
 6            six  
 7            seven  
 8            eight  
 9            nine 

Input

一行,一个整数n。

Output

整数n相对应的小写英文单词或'out'。

Sample Input Copy

1

Sample Output Copy

one

HINT


Source/Category