Write a simple program to perform arithmetic operation using three variables in c++/c
#include<iostream>
using namespace std;
int main()
{
int a,b,c;
cout<<"enter the value of a and b"<<endl;
cin>>a>>b;
cout<<"sum is "<< a+b<< endl;
cout<<"substraction is "<< a-b<< endl;
cout<<"multipliction is "<< a*b<< endl;
cout<<"divison is "<< a/b<< endl;
cout<<"modulo is "<< a%b<< endl;
return 0;
}