month = gets.to_i season = case month when 3, 4, 5 then "spring" when 6, 7, 8 then "summer" when 9, 10, 11 then "fall" when 12, 1, 2 then "winter" end puts season