diff --git a/2-variables/09_hypotenuse.py b/2-variables/09_hypotenuse.py index eb6b9e7..0092925 100644 --- a/2-variables/09_hypotenuse.py +++ b/2-variables/09_hypotenuse.py @@ -1,9 +1,9 @@ # Pythagorean Theorem 📐 # Codédex -a = int(input("Enter a: ")) -b = int(input("Enter b: ")) - +# Write code below 💖 +a = int(input("Enter the lenght of short side:")) +b = int(input ("Enter the other side:")) c = (a**2 + b**2) ** 0.5 - print(c) +