➽ Program:-
#include<iostream>
using namespace std;
int main()
{
int num1, num2,
sum;
cout<<
"Enter Two Numbers: ";
cin>>
num1 >> num2;
sum = num1 +
num2;
cout<<
"Sum of "<< num1 << " and " << num2
<< " is " <<sum;
return 0;
}
➽ Output:-
Enter Two Numbers: 26
27
Sum of 26 and 27 is 53
0 Comments
Please do not enter any spam link in the comment section.