CJCoding With Joseph

All Three Equal

Read three integers, each on its own line. If all three are equal, print All equal. Otherwise print Not all equal. For example, for input 5 then 5 then 5, print:

All equal

Expected Output:

All equal
Topics:
If Statements
๐Ÿ“ฅ Auto-Input:
5\n5\n5
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.