• Source
    1. #include<iostream>
    2. using namespace std;
    3. main()
    4. {
    5. int a,b,sum;
    6. cout<< "\nEnter a Number : " ;
    7. cin>>a;
    8. cout<< "\nEnter another Number : " ;
    9. cin>>b;
    10. sum=a+b;
    11. cout<< "\nThe sum of the Numbers is : " <<sum <<endl ;
    12. system("pause") ;
    13. }