Repositories (1)
python-training
1 snippets stored for this repo
year = int(input("annee? \n"))
if (year % 4 == 0 and year %100 !=0) or (year % 400 == 0):
print('et ouais c\'est bissextile !\nC\'est qui le papa ?!?!?')
else:
print("This is no bissextil you mother fucker !")