01-getLargest

PHOTO EMBED

Sun May 16 2021 13:25:22 GMT+0000 (Coordinated Universal Time)

Saved by @anvarbek

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
content_copyCOPY