Write a program that reads the number of the month (1-6) and outputs the name. Please use the switch expression in this task.
January
February
March
April
May
June
If a number does not belong to any of the listed months, the program should output error!.
Example:
Input
1Output
JanuaryNote: the output text should exactly match the sample, including the letters' case.