
#include <iostream>
#include <conio.h>

using namespace std;

int main() 
{
   int num1, num2, total;
   
   num1 = 2;
   num2 = 3;
   total = num1 + num2;
   
	//output: 2 + 3 = 5
   //type the cout statements
   	cout << num1 << " + " << num2 << " = " << total ;
   
   getche();
   return 0;
}
