Computer Science, asked by SmartBrain05, 5 days ago

Write a simple C++ program to add 2 numbers and
include comment statement.

Answers

Answered by sureshbm12
2

#include <iostream>

using namespace std;

int main(){

//Declaring two integer variables

int num1, num2;

/* cout displays the string provided in the

* double quotes as it is on the screen

*/

cout<<"Enter first integer number: ";

/* cin is used to capture the user input

* and assign it to the variable.

*/

cin>>num1;

cout<<"Enter second integer number: ";

cin>>num2;

cout<<"Sum of entered numbers is: "<<(num1+num2);

return 0;

}

Output:

Enter first integer number: 10

Enter second integer number: 20

Sum of entered numbers is: 30

Similar questions