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