#include <stdio.h>
main ( ) {
     int count = 3;
     double average = 15.5;
printf ("The average of the %i prices is %f.\n", count, average);
}
