Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Creativeee!!! solution in Creative category for Funny Addition by _Chico_
def checkio(data):
a,b = data
while(b != 0):#while loop
c=a&b #and operator
a=a^b #Xor operator
b=c<<1
return a
return add(a,b) #call the function
June 7, 2021
Comments: