month_days = {1: 0, 2: 31, 3: 59, 4: 90, 5: 120, 6: 151, 7: 181, 8: 212, 9: 243, 10: 273, 11: 304, 12: 334} while True: try: yy, mm, dd = map(int, input().split()) except: break else: &nbs...