#try to avoid input function a = int(input()) b = int(input()) c = int(input()) if a == b == c: print(0) elif a == b: print(c) elif a == c: print(b) elif b == c: print(a) else: print(a+b+c)
Click the run button. Try to avoid input() function.