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