

InterviewSolution
Saved Bookmarks
1. |
Accept length,breadth,height from a user. Find the volume of cuboid |
Answer» L=int(input("enter lenght")B=int(input("enter breath")H=int(input("enter height")Vol = l*b*hPrint("volume of cuboid:-",vol) | |