Advertisement
VanoHa

vis

Jan 18th, 2020
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.15 KB | None | 0 0
  1. a = int(input())
  2. if a % 4 == 0 and a % 100 != 0:
  3.     print('vis')
  4. elif a % 100 == 0 and a % 400 == 0:
  5.     print('vis')
  6. else:
  7.     print("nevis")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement