// Calculates the sum of two integers
#include <iostream>
using namespace std;

int main()
{
  int a, b, total;
  cout << "Enter two integers to be added: ";
  cin >> a >> b;
  total = a + b;
  cout << "The sum is " << total << endl;

  return 0;
}
