CJCoding With Joseph

Greatest Common Divisor with a Loop

Read two positive integers (one per line) and use a loop (the Euclidean algorithm) to compute their greatest common divisor, then print it.

For input 12 then 18 the output is:

6

Expected Output:

6
Topics:
Loops
๐Ÿ“ฅ Auto-Input:
12\n18\n
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 (cw, cr, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.