#include using namespace std; using ll=long long; using pll=pair; using tll=tuple; using ld=long double; const ll INF=(1ll<<60); #define rep(i,n) for (ll i=0;i<(ll)(n);i++) #define all(v) v.begin(),v.end() template void chmin(T &a,T b){ if(a>b){ a=b; } } template void chmax(T &a,T b){ if(a> x; if(3<=x&&x<=5) cout << "spring\n"; else if(6<=x&&x<=8) cout << "summer\n"; else if(9<=x&&x<=11) cout << "fall\n"; else cout << "winter\n"; }