Advertisement
Kosheen

Untitled

May 12th, 2018
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. y = int(input())
  2. if ((y % 4 == 0 and y % 100 != 0) or (y % 400 == 0)):
  3.     print("Високосный")
  4. else:
  5.     print("Обычный")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement