Sunday, 28 February 2016

C++ ADDITION

#include<iostream>
#include<conio.h>
using namespace std;
int main()
{
int a,b,c;
cout<<"enter first number:";
cin>>a;
cout<<"enter second number:";
cin>>b;
c=a+b;
cout<<"the sum of two number:-"<<c<<endl;
return 0;
}