programming SUM OF TWO NUMBER







SUM OF TWO NUMBER

#include<iostream>
#include<cstdlib>
using namespace std;
               int main()
               {
int a,b,c;
cout<<"Enter the value of a";
cin>>a;
cout<<"Enter the value of b";
cin>>b;
c=a+b;
cout<<endl<<c<<endl;
system("pause");
return 0;

}

Comments