Added input statements

This commit is contained in:
cmitchell2301 2025-12-14 18:42:29 -05:00
parent 26e1253c0d
commit e5a2871292

View file

@ -0,0 +1,7 @@
length = float(input("Enter a value for length "))
width = float(input("Enter a value for width "))
areaOfRectangle = length * width
print("Area = ",areaOfRectangle)