#include <stdio.h>
#define NUM 5
 
int main(void)
{
	int test[NUM] = {80,60,22,50,75} ;
	int j;

	for(j=0; j<NUM; j++){
		printf("%d番目の人の点数は%dです。\n", j+1, test[j]);
	}

return 0;
}