#include #include using namespace std; int main() { int x, y; int quotient, remainder; cout << "x = "; cin >> x; cout << "y = "; cin >> y; quotient = x / y; remainder = x % y; cout << "x / y = " << quotient; cout << " ... " << remainder << endl; return 0; }