import math print("Enter the Dimentions of a Cuboid") Length = int( input("Length: {Length} ")) Width = int( input("Width: {Width} ")) Height = int( input("Height: {Height} ")) print( Length * Width * Height) # Made by Tristan, only for the eyes of Mr, Ronowicz... ( and me :P)