CJCoding With Joseph

Division Equation

Two integers a = 20 and b = 4 are given. Print the full division equation on one line:

20 / 4 = 5

Use integer division so the result is 5.

Expected Output:

20 / 4 = 5
Topics:
Printing
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.