fork download
  1. def isEven(num):
  2. return not(num & 1)
  3.  
  4. num=int(input())
  5. print("Even" if isEven(num) else "odd")
Success #stdin #stdout 0.03s 9772KB
stdin
25 
stdout
odd