#include <iostream> #include <stdlib.h> using namespace std; int main( ) { char name[50]; int a,b,c; cout << "what's your name: "; cin >> name; cout << "your name is: " << name << endl; cout << "calculate add function,write a"; cin >> a; cout << "calculate add function,write b"; cin >> b; c=a+b; cout << a << '+' << b << "=" << c << endl; system("pause"); }