top of page
Writer's pictureThe Tech Platform

Write C++ Program to Add two numbers.



#include <iostream>
using namespace std;

int main() {
  int x, y;
  int sum;
  cout<<"Adding Two Numbers"<<endl;
  cout << "Enter First number: ";
  cin >> x;
  cout << "Enter Second number: ";
  cin >> y;
  sum = x + y;
  cout << "Sum of two Numbers = : " << sum;
  return 0;
}

Output:



Read More:




Sofia Singh

The Tech Platform

0 comments

Comments


bottom of page