// <write your name and a comment as to what you're doing here>

// This is an alternative to "using namespace std"
#pragma once

//The iostream library includes the std functions "cout", "cin" and "endl".
#include <iostream>

//Every c++ program must have at least one function whose name is "main()"
//This is the entry (starting) point of the program.
int main() {
    // declare and initialize positive integers dvdnd and dvsr:


    // Use "cout<<" to prompt the user to input two positive integers.

    // Then input the integers using "cin>>"

    // Display column headers for "Dividend, Divisor, Quotient, Remainder"


    //while dvdnd > 0

    { // The body of the while loop is contained in curly braces

        // use the modulo operator % to compute the remainder after
        // dvdnd is divided by dvsr and print dvdnd, dvsr, quotient
        // and remainder to the console.
        // For instance, 11 divided by 4 has
        // dividend  divisor  quotient  remainder
        //   11         4        2         3

        // Note that these are all integers.

        // At the end of the loop replace dvdnd by dvdnd/dvsr
    }  // end while loop
    return 0;
} // end main()

/*********************************************************
The out put of the program should look something like this:
-----------------------------------------------------------
Enter positive integers a and b and we'll compute the iterated quotient and rem:
1237 5

   Dividend  Divisor quotient  Remainder
        1237    5       247     2
        247     5       49      2
        49      5       9       4
        9       5       1       4
        1       5       0       1

Process returned 0 (0x0)   execution time : 11.449 s
Press any key to continue.
*************************************************************/
