import strutils let read = iterator: string {.closure.} = while true: for s in stdin.readLine.split: yield s proc readInt: int = read().parseInt proc readFloat: float = read().parseFloat let N = readInt() mod 360 if N == 90 or N == 270: echo "Yes" else: echo "No"