Ddimov90

even_or_odd_03_01

Sep 21st, 2025
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.08 KB | Source Code | 0 0
  1. a = int(input())
  2.  
  3. if a % 2 == 0:
  4.     print("even")
  5. else:
  6.     print("odd")
  7.    
Advertisement
Add Comment
Please, Sign In to add comment