Problem2355--Flea travel

2355: Flea travel

Time Limit: 2 Sec  Memory Limit: 256 MB
Submit: 0  Solved: 0
[Submit] [Status] [Web Board] [Creator:]

Description

time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

A flea is sitting at one of the n hassocks, arranged in a circle, at the moment. After minute number k the flea jumps through k-1 hassocks (clockwise). For example, after the first minute the flea jumps to the neighboring hassock. You should answer: will the flea visit all the hassocks or not. We assume that flea has infinitely much time for this jumping.

Input

The only line contains single integer: 1≤n≤1000 − number of hassocks.

Output

Output "YES" if all the hassocks will be visited and "NO" otherwise.

Examples
Input
1
Output
YES
Input
3
Output
NO

Source/Category