Computer Science, asked by binesperant, 24 days ago

Write a complete C++ programming that would get two integer numbers and calculate their sum.

Answers

Answered by yuvrajmann282
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