Answer:
The program can be found in the explanation part while the output is attached as files.
Explanation:
The program to display the birth month and year, is given below:
//Include the necessary library files.
#include "stdafx.h"
#include <iostream>
using namespace std;
//Start the main() function.
int main()
{
//Declare the necessary variables.
int birthMonth;
int birthYear;
//Prompt the user to enter the birth month.
cout << "Enter the birth month: ";
//Store the input.
cin >> birthMonth;
//Prompt the user to enter the birth year.
cout << "Enter the birth year: ";
//Store the input.
cin >> birthYear;
//Display the output.
cout << "The birth date is: " << birthMonth << "/" << birthYear << endl;
system("pause");
return 0;
}