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

main ()
{
  int smoots;
  float miles, mi_per_smoot;

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