Write a c++ program find division of two number
#include<iostream>
using namespace std;
int main()
{
int i,j,div;
cout<<"Enter the first number\n";
cin>>i;
cout<<"Enter the second number\n";
cin>>j;
div=i/j;
cout<<"Division of two number "<<div;
return 0;
}
Output