#include <iostream>

using namespace std;

int main() {
    string name;

cout <<"Enter the your namr:";
cin >> name;

cout << "welcom," << name << ",to c++ programming!"<< endl;

return 0;

}
	 
	 