webturing 4 anos atrás
pai
commit
eca5b43edb
1 arquivos alterados com 5 adições e 0 exclusões
  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")