CJCoding With Joseph

Even Sum Check (Input)

Read two integers from standard input, add them into a variable sum, and report whether the sum is even or odd. Print exactly:

The sum <sum> is even

or

The sum <sum> is odd

For the input 4 6 the sum is 10, so the output is:

The sum 10 is even

Expected Output:

The sum 10 is even
Topics:
If Statements
๐Ÿ“ฅ Auto-Input:
4 6\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.