def name(params):
    k = 0
    for A in params:
        if A > k:
            k = A
    return k
        
print(name([1,2,1,3]))

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: