Solution Exercise 14

Define a function max_of_three() that takes three numbers as arguments and returns the largest of them.

def max_of_three(first, second, third):
    if first > second and first > third:
        return first
    elif second > third:
        return second
    else:
        return third

def main():
    biggest = max_of_three(44, 16, 17)
    print(biggest)
    
if __name__ == '__main__':
    main()