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