Untitled

 avatar
unknown
plain_text
a year ago
179 B
4
Indexable
a = int(input())
if a % 400 == 0 and a % 4 == 0 and a % 100 != 0:
    print('YES')# TODO: write code... a % 400 = 0 and !(a % 100 = 0) and a % 4 = 0:
    else:
        print('NO')
Editor is loading...
Leave a Comment