a=int(input()) if a%400 == 0: print(a,"YES") else: print(a,"NO")
------Input------ 3264 ------Answer----- 3264 Yes ------Your output----- 3264 NO