Computer Science, asked by shivkdm28, 9 months ago

Ashna is a third grade school going school.Miss Benzy is a very strict teacher and she teaches math to all the students. On the first day of academic year, Miss Benzy gave her a homework to find sum, difference, product, quotient and remainder of the two numbers given by her. Can you help Ashna by writing a program for the same.
The input should consist of two integers.

Answers

Answered by sainakakkar
1

Answer:

Explanation:

def go_do_it_on_your_own(passed two int,1,2)

in python

Answered by pratikkohad1999
1

Answer:

#include <iostream>

using namespace std;

int main()

{

int a,b;

std::cin>>a>>b;

std::cout << "a+b=" << (a+b) << endl ;

std::cout << "a-b=" << (a-b) << endl ;

std::cout << "a*b=" << (a*b) << endl ;

std::cout << "a/b=" << (a/b) << endl ;

std::cout << "a%b=" << (a%b) << endl ;

return 0;

}

Explanation:

DONE GUYS YOU CAN TRY NOW

Similar questions