n=gets.to_i if n%4==0 then if n%25==0 then if n%16==0 then print("Yes") else print("No") end else print("Yes") end else print("No") end