CJCoding With Joseph

Three-Way Number Comparison (Input)

Read two integers a and b from standard input. Using an if / else-if / else chain, print exactly one of these lines:

<a> is less than <b>
<a> is greater than <b>
<a> is equal to <b>

For the input 3 5 the output is:

3 is less than 5

Expected Output:

3 is less than 5
Topics:
If Statements
๐Ÿ“ฅ Auto-Input:
3 5\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 (sysout, psvm, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.