0 Comments

//C++ Program to add 2 numbers
#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
int a, b, sum;
cout<<"Enter any two numbers"<<endl;
cin>>a>>b;
sum=a+b;
cout<<"Sum of two numbers = "<<sum<<endl;
getch();
}

Leave a Reply

Your email address will not be published. Required fields are marked *