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