codeforces#P661B. Seasons
Seasons
Description
You are given a name of a month. Output the season of the year to which it belongs (based on Northern hemisphere).
The input consists of a single string containing the name of one of the twelve months (January, February, March, April, May, June, July, August, September, October, November or December). The string is capitalized as given here.
Output a single string — the season of the year to which the given month belongs (winter, spring, summer or autumn). The name of the season should be in lowercase.
Input
The input consists of a single string containing the name of one of the twelve months (January, February, March, April, May, June, July, August, September, October, November or December). The string is capitalized as given here.
Output
Output a single string — the season of the year to which the given month belongs (winter, spring, summer or autumn). The name of the season should be in lowercase.
Samples
April
spring
November
autumn
Note
Assume that winter is December through February, spring is March through May, summer is June through August and autumn is September through November.