CJCoding With Joseph

Same Sign Check

Read two nonzero integers with scanf. If they have the same sign (both positive or both negative), print exactly:

Same sign

Otherwise print exactly:

Different sign

No trailing newline. For input 3 7 the output is Same sign; for input -2 5 the output is Different sign.

Expected Output:

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