Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <bits/stdc++.h>
- using namespace std;
- int main() {
- ios::sync_with_stdio(false);
- cin.tie(0);
- int n;
- cin >> n;
- bool checker = n && (!(n & (n - 1)));
- cout << (checker ? "YES" : "NO") << '\n';
- return 0;
- }
Add Comment
Please, Sign In to add comment