#include using namespace std; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int N; cin >> N; if(N==1){ cout << 0 << endl; return 0; } int M = N-1; cout << M << endl; vector W; for(int x=1; x<=200 && (int)W.size()