CJCoding With Joseph

Sum Is Even

Read two integers with scanf. If their sum is even, print exactly:

Even

Otherwise print exactly:

Odd

No trailing newline. For input 3 5 the output is Even; for input 2 3 the output is Odd.

Expected Output:

Even
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 (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.