Files
discretemath-labs/LabMD_1/ex2.py
2022-10-24 22:00:36 +03: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))