def isEven(num): return not(num & 1) num=int(input())print("Even" if isEven(num) else "odd")
25
odd
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!