17.5 Homework 2, P1: Date Calculator
Prompt the user to enter the month and day of the year (1 for January, 2 for February..)
Prompt the user to enter a period of time in days Print the date after the period entered by the user has passed. For simplicity, assume that
each month has 30 days except for February that always counts for 28 days.
Sample output:
Enter the month and day: 3 5
Enter the days forward: 50
After 50 days, the date of 3/5 will be 4/25
Test cases: (Month Day Period New Date)
(3, 5, 50, 4/25), (1, 1, 15, 1/16), (1, 1, 33, 2/4), (1, 1, 60, 3/3), (1, 1, 370, 1/13)