CJCoding With Joseph

Sign of a Product

Read two integers with scanf and consider their product. Print Positive if the product is greater than zero, Negative if it is less than zero, or Zero if it equals zero. No trailing newline. For input 3 4 the output is Positive; for -3 4 it is Negative; for 0 5 it is Zero.

Expected Output:

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