Advertisement
Guest User

Untitled

a guest
Jan 5th, 2020
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.23 KB | None | 0 0
  1. x = 0
  2.  
  3. if x == 0:
  4.     print("Nul")
  5. elif x % 2 == 0:
  6.     print("Lige")
  7. elif x % 2 == 1:
  8.     print("Ulige")
  9.  
  10. print('---')
  11.  
  12. if x == 0:
  13.     print("Nul")
  14. if x % 2 == 0:
  15.     print("Lige")
  16. if x % 2 == 1:
  17.     print("Ulige")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement