#include using namespace std; void solve(){ using ll=long long; ll l; cin>>l; ll x=l; while (x%2==0) x/=2; if (x==1){ ll k=l/4; cout<<3*k<<" "<<4*k<<" "<<5*k< vec; while (x){ vec.push_back(x%10); x/=10; } reverse(vec.begin(),vec.end()); for (int a:vec) cout<>t; while (t--) solve(); }