ent = input().split() months = {1:31, 2:28, 3:31, 4:30, 5:31, 6:30, 7:31, 8:31, 9:30, 10:31, 11:30, 12:31} months_run = {1:31, 2:29, 3:31, 4:30, 5:31, 6:30, 7:31, 8:31, 9:30, 10:31, 11:30, 12:31} def run(year): if year % 400 == 0 or (year % 4 == 0 and year % 100 != 0): return True return False days ...