feat: Initial commit

This commit is contained in:
2024-03-22 17:01:42 +01:00
parent 954985f39a
commit c343ff6e93
106 changed files with 143428 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
anno = int(input("Inserisci un anno: "))
if anno % 400 == 0 or (anno % 4 == 0 and anno % 100 != 0):
print("L'anno è bisestile")
else:
print("L'anno non è bisestile")