Example output for CS303e Summer 2020 Assignment 5 later_date. 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: September, 19, 2018, 1 ***** This program asks for a date and days to skip. It then displays the date that many days after the given date. Enter the month: September Enter the day of the month: 19 Enter the year: 2018 Enter the number of days to skip: 1 1 day after September 19, 2018 is September 20, 2018. ***** Example 2 - Inputs: September, 30, 2018, 3 ***** This program asks for a date and days to skip. It then displays the date that many days after the given date. Enter the month: September Enter the day of the month: 30 Enter the year: 2018 Enter the number of days to skip: 3 3 days after September 30, 2018 is October 3, 2018. ***** Example 3 - Inputs: December, 31, 2018, 7 ***** This program asks for a date and days to skip. It then displays the date that many days after the given date. Enter the month: December Enter the day of the month: 31 Enter the year: 2018 Enter the number of days to skip: 7 7 days after December 31, 2018 is January 7, 2019. ***** Example 4 - Inputs: February, 28, 2019, 1 ***** This program asks for a date and days to skip. It then displays the date that many days after the given date. Enter the month: February Enter the day of the month: 28 Enter the year: 2019 Enter the number of days to skip: 1 1 day after February 28, 2019 is March 1, 2019. ***** Example 5 - Inputs: February, 28, 2020, 1 ***** This program asks for a date and days to skip. It then displays the date that many days after the given date. Enter the month: February Enter the day of the month: 28 Enter the year: 2020 Enter the number of days to skip: 1 1 day after February 28, 2020 is February 29, 2020. ***** Example 6 - Inputs: February, 20, 2020, 20 ***** This program asks for a date and days to skip. It then displays the date that many days after the given date. Enter the month: February Enter the day of the month: 20 Enter the year: 2020 Enter the number of days to skip: 20 20 days after February 20, 2020 is March 11, 2020. ***** Example 7 - Inputs: December, 15, 1975, 18 ***** This program asks for a date and days to skip. It then displays the date that many days after the given date. Enter the month: December Enter the day of the month: 15 Enter the year: 1975 Enter the number of days to skip: 18 18 days after December 15, 1975 is January 2, 1976. *****