Skip to content

Latest commit

 

History

History
24 lines (22 loc) · 473 Bytes

File metadata and controls

24 lines (22 loc) · 473 Bytes

<<<<<<< HEAD

def lone_sum(a, b, c): if a >= b: return c elif a == c: return b elif b == c: return a elif a == b and a == c and b == c: return 0 else: return a+b+c if_name_ == 'main': x = int(input()) y = int(input()) z = int(input())

result = lone_sum(x, y, z) print("Input: " + str {x} + ", " + str(y) + ", " + str(z)) print("result: " + str(result))

14a1a2749ffaf07602916731647a940593394fda