Rename ex2.py to xnor.py

This commit is contained in:
Daniel
2022-11-03 11:41:58 +02:00
committed by GitHub
parent dda2d83ace
commit 65c3516874

9
LabMD_1/xnor.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))