First time asking a question on stackoverflow. I am stuck trying to solve this. This is my code:
a = int(input())
b = int(input())
Given two non-zero integers, print "YES" if exactly one of them is positive and print "NO" otherwise.
if (a > 0) or (b > 0):
print('YES')
else:
print('NO')