#include<iostream.h>
#include<conio.h>
#include<conio.h>
void main()
{
clrscr();
int a,b,q,r;
cout<<“Enter two numbers:”;
cin>>a>>b;
if(a>b)
{
q=a/b;
r=a%b;
cout<<“nQuotient=”<<q;
cout<<“nRemainder=”<<r;
}
else
cout<<“nFirst no. should be greater than second no….!!!”;
getch();
}
Enter the two number find the remainder value?.