CJCoding With Joseph

Even Sum of Two Numbers

Read two integers a and b. If their sum a + b is even, print Even; otherwise print Odd.

For example, given the input 3 5, the sum is 8, so the program prints:

Even

Expected Output:

Even
Topics:
If Statements
๐Ÿ“ฅ Auto-Input:
3 5
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 (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.