muhammad_nasif

TASK_01

Apr 13th, 2021 (edited)
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. def even_checker(x):
  2.     if x % 2 == 0:
  3.         print("Even!!")
  4.     else:
  5.         print("Odd!!")
  6.  
  7.  
  8. val = int(input())
  9. even_checker(val)
  10.  
Add Comment
Please, Sign In to add comment