Write a complete C++ programming that would get two integer numbers and calculate their sum.
Answers
Answered by
0
Answer:
Explanation:
#include <bits/stdc++.h>
using namespace std;
int main(){
int a,b;
cin>>a>>b;
int sum=a+b;
cout<<sum<<endl;
return 0;
}
Similar questions
Math,
2 hours ago
English,
2 hours ago
Physics,
5 hours ago
India Languages,
7 months ago
Geography,
7 months ago