#include <iostream>
#include <string>
usingnamespace std;
int add(int x, int y){
int z;
z = x + y;
return z;
}//End of Add
void display_Welcome_Msn(){
cout << "Welcome to my function program" << endl;
}//End of display_Welcome_Msn
string your_Name(string age){
string name;
string name_and_age;
cout << "please enter your name: ";
getline(cin, name);
name_and_age = name;
name_and_age.append(" ");
name_and_age.append(age);
return name_and_age;
}//End of your_Name
void main(){
string age = 0;
string display;
display_Welcome_Msn();
cout << "please enter your Age: ";
cin >> age;
display = your_Name(age);
cout << display << endl;
int x = 0;
int y = 0;
int z = 0;
cout << "please enter numbers: ";
cin >> x;
cin >> y;
z = add(x,y);
cout << "The addition of " << x << " " << y <<" is: " << z;
}//End of Main