#K53262. Power of Two Checker
Power of Two Checker
Power of Two Checker
In this problem, you are given an integer N and you need to determine whether N is a power of two. An integer is a power of two if it can be expressed as \(2^k\) for some non-negative integer \(k\). For example, 1, 2, 4, 8, etc. are powers of two.
Your task is to check the given number N and output "Yes" if it is a power of two, and "No" otherwise.
inputFormat
The input consists of a single integer N provided through standard input.
Constraints:
- N can be any integer (both positive and negative) in the range of a 32-bit or 64-bit number.
outputFormat
Output a single line containing either "Yes" if N is a power of two, or "No" if it is not.
## sample1
Yes