write a program to input length,breadth,height of cuboid and find the volume of the cuboid
Answers
Answered by
2
Answer:
python program
l=int(input ("length"))
b=int(input ("breadth"))
h=int(input ("height"))
v=l*b*h
print (v)
hope it helps dear
if found helpful mark it as brainiliest and follow
Similar questions