# Homework 13, challenge: Hypotenuse. # # Given a and b (the two short sides of a right triangle), compute # the hypotenuse c using: # c = sqrt(a**2 + b**2) # Print all three values with labels. Round c to two decimals using # an f-string with :.2f. # # Run with: python exercises/13/homework/04-hypotenuse.py import math a = 3 b = 4 # Your code goes here: