Files
discretemath-labs/LabMD_1/xnor.py
2022-11-03 11:41:58 +02:00

10 lines
117 B
Python

def XNOR(a,b):
if(a == b):
return 1
else:
return 0
x = input()
y = input()
print(XNOR(x,y))