#include<iostream> using namespace std; int main() { int t,n; cin>>t; while(cin>>n) { if((n&(n-1))==0) cout<<"Yes"<<endl; else cout<<"No"<<endl; } }