Question: Two integers are read from input and assigned to birth _ month and birth _ day, respectively. Write one print ( ) statement to output

Two integers are read from input and assigned to birth_month and birth_day, respectively. Write one print() statement to output 'Month: ', followed by the variable birth_month. Write another print() statement to output 'Day: ', followed by the variable birth_day.
Click here for example 1
Ex: If the input is:
6
23
then the output is:
Month: 6
Day: 23
Click here for example 2
Ex: If the input is:
9
16
then the output is:
Month: 9
Day: 16
Note: Our autograder automatically runs your program several times, testing different input values each time to ensure your program works for any values. This program is tested three times: first with inputs 6 and 23, then with inputs 9 and 16, and finally with a random input.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!