#include <iostream>
using namespace std;
int main()
{
cout << "Adding Numbers" <<"\n";
int a, b, add;
cout << "Enter the first integer:";
cin >> a;
cout << "Enter the second integer:";
cin >> b;
add = a + b;
cout << "The sum is" << add << "\n";
system("pause");
return 0;
}