#include using namespace std; int main(){ int X; cin >> X; string a[] = {"spring", "summer", "fall", "winter"}; cout << a[X % 12 / 3]; }