write a program in c++ to add to two numbers
Answers
Answered by
1
Explanation:
#include<iostream.h>
int main{}
{
int a,b;
int Add;
cout<<"Enter value of a and b";
cin>>a>>b;
Add=a+b;
cout<<"Sum of two numbers"<<Add;
}
Similar questions