#include using namespace std; #define rep(i,n) for (long long i=0;i<(long long)(n);i++) #define all(v) v.begin(),v.end() using ll=long long; using pll=pair; using tll=tuple; const ll INF=(1ll<<60); template void chmin(T &a,T b){ if(a>b){ a=b; } } template void chmax(T &a,T b){ if(a> n; ll mx=1e9; rep(i,n){ ll b,m,e; b=max(1ll,rand()%mx-2); m=rand()%mx+1; while(b<=m){ m=rand()%mx+1; } e=rand()%mx+1; cout << b << " " << m << " " << e << endl; } }