C++ Program to Add Two Numbers
Here you will get C++ program to add two numbers. The program will ask user to enter two numbers and then calculate their sum. #include<iostream> using namespace std; int main() { int x,y,sum; cout<<“Enter first no: “; cin>>x; cout<<“Enter second no: “; cin>>y; sum=x+y; cout<<“\nSum = “<<sum; return 0; } Output Enter first no: 4 …