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