let calc n = if n = 1 then "NO" else "YES" let main = let input = stdin.ReadLine() |> int printfn "%s" (calc input)