I.py 105 B

12345
  1. n = int(input())
  2. if (n % 4 == 0 and n % 100 != 0) or n % 400 == 0:
  3. print("yes")
  4. else:
  5. print("no")