// ex_ch6_9.c
#include <stdio.h>

const int SIZE = 8;

int main(void)
{
	int integers[SIZE];

	printf("Input eight integers: ");
	for (int count = 0; count < SIZE; count++)
	{
		scanf("%d", &integers[count]);
	}

	for (int count = SIZE - 1; count >= 0; count--)
	{
		printf("%d ", integers[count]);
	}
	printf("\n");
	return 0;
}