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