#include <iostream>
int main() {
float length, width, height;
length = 6;
width = 3;
height = 4;
float surfacearea = 2 * (length * width + width * height + height * length);
std::cout << "Surface Area of Cuboid is = " << surfacearea;
return 0;
}
/*
run:
Surface Area of Cuboid is = 108
*/