# Exercice 4

def max2(a, b):
    if a > b:
        return a
    else:
        return b
        
m = max2(14, 18)
print(m)