Example output for CS303e Summer 2020 Assignment 4 zeller. Give the same inputs, your output shall match the following output exactly. The output does not include the lines with ***** before and after the output. Those lines are to delineate the required output. Example 1 - Inputs: July, 31, 1929 ***** Enter the month (for example, January, February, etc.): July Enter the day (an integer): 31 Enter the year (an integer): 1929 The day of the week is Wednesday. ***** Example 2 - Inputs: January, 3, 1988 ***** Enter the month (for example, January, February, etc.): January Enter the day (an integer): 3 Enter the year (an integer): 1988 The day of the week is Sunday. ***** Example 3 - Inputs: March, 1, 2000 ***** Enter the month (for example, January, February, etc.): March Enter the day (an integer): 1 Enter the year (an integer): 2000 The day of the week is Wednesday. ***** Example 4 - Inputs: April, 1, 1995 ***** Enter the month (for example, January, February, etc.): April Enter the day (an integer): 1 Enter the year (an integer): 1995 The day of the week is Saturday. ***** Example 5 - Inputs: January, 1, 1900 ***** Enter the month (for example, January, February, etc.): January Enter the day (an integer): 1 Enter the year (an integer): 1900 The day of the week is Monday. ***** Example 6 - Inputs: December, 31, 2100 ***** Enter the month (for example, January, February, etc.): December Enter the day (an integer): 31 Enter the year (an integer): 2100 The day of the week is Friday. ***** Example 7 - Inputs: February, 29, 2004 ***** Enter the month (for example, January, February, etc.): February Enter the day (an integer): 29 Enter the year (an integer): 2004 The day of the week is Sunday. *****