Leap Year
AI-enhanced title and description
is_leap_year = False
input_year = int(input())
if (input_year % 4) == 0:
if (input_year % 100) == 0:
if (input_year % 400) == 0:
else: