Algorithm:
Step 1: Start
Step 2: Input length, breadth and height of cuboid (l, b, h)
Step 3: A = 2 * ( l * b + b * h + h * l)
Step 4: V = l * b * h
Step 5: Print ”Total Surface Area Of Cuboid is” A
Step 6: Print “Volume Of Cuboid is ” V
Step 7: Stop/End
Flowchart:

Python code