1.Write a function that takes an integer parameter m representing the month number of the
year and returns the corresponding name of the month. For instance, if m = 3, the month is
March. Test your program.
2. In preparing the calendar for a year we need to know whether that particular year is leap
year or not. Design a function leap( ) that receives the year as a parameter and returns an
appropriate message. What modifications are required if we want to use the function in preparing the actual calendar?