Variable sep
You are asked to print all 12 months of the year separated by the specified value in the input.
The input contains a single line representing the value that needs to be used to separate the months. The program should print all the months separated by that value.
Here is the list of all months: January, February, March, April, May, June, July, August, September, October, November, and December.
Input | Output |
, | January,February,March,April,May,June,July,August,September,October,November,December |
== | January==February==March==April==May==June==July==August==September==October==November==December |
Constraints
Time limit: 2 seconds
Memory limit: 512 MB
Output limit: 1 MB