Create ex2.py

This commit is contained in:
Daniel
2022-10-24 22:00:36 +03:00
committed by GitHub
parent ffc146f856
commit 431a2d96e6

9
LabMD_1/ex2.py Normal file
View File

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