rs200415@rguktsklm.ac.in
CODERZONE
Home
Newsbuzz
PUC Material
Courses
Python Tutorial
C Tutorial
C++ Tutorial
java Tutorial
login
Run
Back
#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)
#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.