main = do n <- getLine let result = if (read n) `mod` 180 == 90 then "Yes" else "No" putStrLn result