My issue
My code
length = 11
width = 13
print(length * width)
print(2*(11+13))
#replace the _ with the updated value. Update the width from 13 to 15
width =15
print( length*width )
print(2*(length + width))
Learning course: Learn Python
Problem Link: CodeChef: Practical coding for everyone