Your task is to write a program to calculate the area of the walls and ceiling of a room, e.g. so you can work out how much paint to buy for painting it. The skeleton program calculates the volume instead of the area.
Your task is to change it to calculate the area of the walls and ceiling.
You can calculate everything in a single expression, but it might be better to
introduce some more variables, e.g. endWall, sideWall
and ceiling to hold the sub-areas to be added together.