#include <iostream>
using namespace std;
 
#include <iostream>
using namespace std;
 
int main() 
{
	int firstInteger;    // INPUT - first integer to be addened
	int secondInteger;   // INPUT - second integer to be addened
	int total;            // OUTPUT - sum of two integers
 
	// Define the variable with given value
	firstInteger = 62;
	secondInteger = 99;
 
	// Sum these two values
	total = firstInteger + secondInteger;
 
	// Display the total of these two values.
	cout << "The sum of " << firstInteger << " and ";
	cout << secondInteger << " is " << total << endl; 
	return 0;
}