#include <iostream.h>
main ( ) {
  int result, height = 11, width = 9, length = 40;
  result = height;           ///
  result = result * width;   ///
  result = result * length;  ///
  cout << "The volume of the box car is ";
  cout << result;
  cout << endl;
}
