diff --git a/rectangle01.py b/rectangle01.py index 41a62c8..d2c7c0e 100644 --- a/rectangle01.py +++ b/rectangle01.py @@ -1,6 +1,6 @@ -length = 4 -width = 3 +length = float(input("Enter a value for length ")) +width = float(input("Enter a value for width ")) areaOfRectangle = length * width