/* Andras Konya 9/9/01 Chapter 3 Exercise 6 --- Two Integers */ #include int main () { int o; // defines first integer cout << "Enter first integer: "; cin >> o; int t; cout << "Enter the second integer: "; cin >> t; cout << endl; cout << o << " / " << t << " = " << (o/t)<< endl; cout << o << " % " << t << " = " << (o%t)<< endl; cout << t << " / " << o << " = " << (t/o)<< endl; cout << t << " / " << o << " = " << (t%o)<< endl; char dummy; cin >> dummy; return (0); }