# Author: Scott Wehrwein
# Date: 1/25/23
# Print the result of a xor b

a = bool(int(input("Enter a (0 for False, 1 for True):")))
b = bool(int(input("Enter b (0 for False, 1 for True):")))

print("a XOR b is ", end="")

if a:
    if b:
        print(False)
    else:
        print(True)
else:
    print(b)
