You have a class GeometricCuboid with a 3-argument constructor:
public GeometricCuboid(int width, int height, int length)Write a program that reads width, height and length, creates an instance named cuboid and outputs the result of cuboid.toString().
Use the provided template, do not change it!