print ("Perimeter for Total House Floor Remodeling Calculator")
print(" ")
width1 = input ("Please enter the width of the floor: ")
length1 = input ("Please enter the length of the floor: ")
print (" ")
length = length1 * 2
width = width1 * 2
perimeter = (length + width)
print ("The perimeter of the floor is: ",perimeter)
Once I input my number and lets say I put in 5 for the width and 5 for the length, my perimeter would come out as 5555 instead of 20. I'm new to coding so any help is greatly appreciated.