#include using namespace std; int main() { cout << "When 2 is divided into 5. The quotient is: " << 5/2 << " and there is a remainder of: " << 5%2 << endl; return 0; }