From 37a4b16f7b306c4bf17c4331c0bf286b666b355e Mon Sep 17 00:00:00 2001 From: Vishnu Raj <92755633+vishnuvrj7@users.noreply.github.com> Date: Tue, 18 Mar 2025 23:41:23 +0530 Subject: [PATCH] Update 09_hypotenuse.py corrected the code! --- 2-variables/09_hypotenuse.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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) +