fork(1) download
  1. number=int(input())
  2. if(number%2==0):
  3. print("even")
  4. else:
  5. print("odd")
Success #stdin #stdout 0.02s 9340KB
stdin
5
stdout
odd