You are on page 1of 1

def bigger(a,b):

if a>b: return a
else: return b
def biggest(bigger(a,b),c)
print biggest(12,14,16)

You might also like