CJCoding With Joseph

Quotient and Remainder

Read two integers a and b from input. Print the quotient and remainder of a divided by b on two lines in this exact format. For example, if the input is:

17 5

print:

Quotient: 3
Remainder: 2

Use integer division / and the modulo operator %.

Expected Output:

Quotient: 3
Remainder: 2
Topics:
User Input
๐Ÿ“ฅ Auto-Input:
17 5
This input is automatically fed to your program's stdin
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.