10 lines
117 B
Python
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))
|