#include using namespace std; #define rep(i,n) for (int i=0; i<(n); ++i) #define nall(a) a.begin(),a.end() #define rall(a) a.rbegin(),a.rend() #define Yes cout << "Yes" << endl #define No cout << "No" << endl templateinline bool chmax(T&a,U b){if(ainline bool chmin(T&a,U b){if(a>b){a=b;return 1;}return 0;} using ll = long long; using ull = unsigned long long; using P = pair; const int inf = (1e9); const ll INF = (1e18)+(1e9); const ll dx[] = {0,1,0,-1,1,1,-1,-1}; const ll dy[] = {1,0,-1,0,1,-1,1,-1}; //#include //using namespace atcoder; //using mint = modint998244353; int testcase(){ ll n,m,k; cin >> n >> m >> k; ll s = 1; for(ll i=1; i<=n; i++){ for(ll j=s; j> t; //while(t--) testcase(); return 0; }