#include <iostream>
using namespace std;

int main() {
	string Name = "Ajay";
    int Age = 10;
    cout<<Name<<" "<<Age;
    //Calculate future Age
    int futureAge = Age +50;
//Print the formatted output
    cout<<"In 50 years,"<<Name<< "you will be "<<futureAge << "years old";
}
