#include using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); int N; cin >> N; if(N == 1){cout << "No" << endl; return 0;} vector M; for(int i=2; i<=N; i++) M.push_back((1LL<