# Homework 16, challenge -- solution. a = 7 b = 12 c = 12 if a >= b and a >= c: print(a) elif b >= c: print(b) else: print(c)