#include <stdio.h>

int main(void) {
char a[10][7] = {"hi", "hello", "fellow"};
    printf("%s",a[1]);

	return 0;
}
