l = int(input("Enter the length of the cuboid (in cm): "))
b = int(input("Enter the breadth of the cuboid (in cm): "))
h = int(input("Enter the height of the cuboid (in cm): "))
area = 2*(l*b + b*h + l*h)
print("Area of the cuboid is:", area, "cm^2")