#include #include using namespace std; using namespace atcoder; typedef modint998244353 mint; typedef long long ll; int main(){ int x; cin >> 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"; } }