CJCoding With Joseph

Even Sum of Two

Read two integers, each on its own line, and add them. If the sum is even, print Even. Otherwise print Odd. For example, for input 3 then 5, print:

Even

Expected Output:

Even
Topics:
If Statements
๐Ÿ“ฅ Auto-Input:
3\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.