3 lines
77 B
Python
3 lines
77 B
Python
a, b = int(input()), int(input())
|
|
print(bool((a or not b) and (not a or b)))
|
a, b = int(input()), int(input())
|
|
print(bool((a or not b) and (not a or b)))
|