Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. x = int (input())
  2. if x % 4 == 0 and x % 100 !=0 or x % 400==0:
  3. print ('yes')
  4. else:
  5. print ('no')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement