open_in_new
content_copy
def getLargest(a,b,c): if a>b: if a>c: return a else: return c else: if b>c: return b else: return c