Answer:
#include <iostream>
using namespace std;
int main()
{
const int YEAR = 2050;
int currentYear = 2020;
int currentAge = 38;
cout<<"You will be " << currentAge + (YEAR - currentYear) << " years old in " << YEAR;
return 0;
}
Explanation:
Initialize the YEAR as a constant and set it to 2050
Initialize the currentYear as 2020, and currentAge as 38
Calculate and print the age in 2050 (Subtract the currentYear from the YEAR and add it to the currentAge)