#include<iostream>using namespace std;main() {int a,b,sum;cout<< "\nEnter a Number : " ;cin>>a;cout<< "\nEnter another Number : " ;cin>>b;sum=a+b;cout<< "\nThe sum of the Numbers is : " <<sum <<endl ;system("pause") ; }