#include <iostream.h>
double box_volume (double h, double w, double l) {return h * w * l;}
main ( ) {
  double height, width, depth;
  int count;
  for (count = 0; cin >> height >> width >> depth; ++count)
    cout << "The volume of a "
         << height << " by " << width << " by " << depth
         << " box car is "
         << box_volume (height, width, depth) << endl;
  cout << "You have computed the volumes of "
       << count << " box cars." << endl;
}
