Answer:
in1 = int(input("Enter value one: "))
in2 = int(input("Enter value two: "))
print(in1,type(in1), in2, type(in2))
if (in1 <=0 and in2 <=0) or (not in1 <=0 and not in2<=0):
print( True)
else:
print( False)
Step-by-step explanation:
The if statement of the python source code is used to implement an Exclusive-NOR logic gate that gives a true or high value if both inputs are either true or false.