Answer:
it will use up some of the internet and then you will have to pay for it later.
Explanation:
because it is taking up the internet so you will have to pay for it .
Answer:
def funct1():
h=int(input("Enter height of the box"))
w=int(input("Enter the width of the box"))
L=int(input("Enter the length of the box"))
surface_area=2*(h*w + h*L + w*L)
return surface_area
a=funct1()
print(a)
Explanation:
Please check the answer section.