write a program to add two numbers
Answers
Answered by
5
Answer:
#include<iostream.h>
#include<conio.h>
void main()
{
int a, b, sum;
cout<<"enter two numbers:";
cin>>a>>b;
sum=a+b;
cout<<sum;
getch();
}
Similar questions