Browse Source

Add 'I.py'

webturing 4 years ago
parent
commit
eca5b43edb
1 changed files with 5 additions and 0 deletions
  1. 5 0
      I.py

+ 5 - 0
I.py

@@ -0,0 +1,5 @@
+n = int(input())
+if (n % 4 == 0 and n % 100 != 0) or n % 400 == 0:
+    print("yes")
+else:
+    print("no")