n = str(input('type string'))
y = n[::-1] 
if y.lower() == n.lower():
    print('yippee')
else:
    print('n')