A = float(input("Enter side A: "))

B = float(input("Enter side B: "))

A_squared = math.pow(A, 2)
B_squared = math.pow(B, 2)

C = math.sqrt(A_squared + B_squared)

print(f"C = {C}")

..

This program calculates the hypotenuse of a right triangle using the Pythagorean theorem.

You can enter the lengths of the two sides (A and B) of the right triangle, and the program will calculate the length of the hypotenuse (C) using the formula C = square root of (A^2 + B^2).

Make sure to import the math module in Python before running the code to use the math functions like sqrt and pow.