/*
 *This program converts length of the
 *Harvard Bridge from smoots to miles
*/

#define FEET_PER_SMOOT 5.667
#define FEET_PER_MILE 5280
#define SMOOTS 365

main ()
{
  float miles, mi_per_smoot;

  mi_per_smoot = FEET_PER_SMOOT / FEET_PER_MILE;
  miles = mi_per_smoot * SMOOTS;
  printf("How long is the Harvard Bridge? \n");
  printf("Almost %d smoots, or about %f miles. \n", SMOOTS, miles);
}
