#27347: Python一行解


810089@mail2.chshs.ntpc.edu.tw (HaoGod)


print("Odd" if int(input())%2 else "Even")
 
Python中的if可以用作三元運算子,用法如下:
'true' if True else 'false'
'true'
 
'true' if False else 'false'
'false'