NALLAMUTHU GOUNDER MAHALINGAM COLLEGE
POLLACHI-642001
R.Rasigapriya
Bsc Computer Science(Ist Year)
4.Division
#include <iostream>
int main()
{
int a,b,c;
std::cout<<"Enter the two
numbers"<<std::endl;
std::cin>>a>>b;
c=a/b;
std::cout<<"The answer is "<<c;
return 0;
}
OUTPUT: