x=int(input()) if 3<=x and x<=5: print("spring") elif 6<=x and x<=8: print("summer") elif 9<=x and x<=11: print("fall") else: print("winter")