#include <iostream.h>
main( ) { int x, y; x=10; y=3; cout << x/y; // will display 3 cout<< "n"; cout<< x%y; // will display the remainder=1 return 0; }