• + 0 comments

    year=int(input()) if year%4 == 0 or year%400 == 0: print('True') elif year%100 != 0: print('False')