CJCoding With Joseph

Max of Two Numbers (Input)

Read two integers a and b from standard input (they may be on the same line, separated by a space). Print the larger one using this exact wording:

The larger number is <value>

For the input 3 8 the output is:

The larger number is 8

Expected Output:

The larger number is 8
Topics:
If Statements
๐Ÿ“ฅ Auto-Input:
3 8\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.