# Homework 13, challenge -- solution. import math a = 3 b = 4 c = math.sqrt(a * a + b * b) print("a =", a) print("b =", b) print(f"c = {c:.2f}")