HTMLify

write_a_function.py
Views: 137 | Author: djdj
def is_leap(year):
    leap = False
    return leap

year = int(input())
print(is_leap(year))

Comments