Computer Science, asked by nagarajunagaraju3305, 1 month ago

Write a c++program to add and subtract two numbers

Answers

Answered by vishu126191
0

Answer:

refer to the attachment for better understanding

Attachments:
Answered by anjan07mohanan
0

#include <iostream>

using namespace std;

int main()

{

int num1, num2;

cout<<"Enter first integer number: ";

cin>>num1;

cout<<"Enter second integer number: ";

cin>>num2;

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

return 0;

}

Similar questions