h=int(input('enter your number: '))
:if 9<h<100
m=(h//10)
p=(h%10)
z=(p*10)+m
print(z)
h=int(input('enter your number: '))
:if h==0
print('zero')
:elif h==1
print('one')
:elif h==2
print('two')
:elif h==3
print('three')
:elif h==4
print('for')
:elif h==5
print('five')
:elif h==6
print('six')
:elif h==7
print('seven')
:elif h==8
print('eight')
:elif h==9
print('nine')