CJCoding With Joseph

Sign of Product

Read two integers a and b, each on its own line. Look at the sign of their product a * b: if the product is zero print Zero, if it is positive print Positive, and if it is negative print Negative. For example, for input -3 then 4, print:

Negative

Expected Output:

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