#include<stdio.h>
#include<string.h>
int main(){
    int n;
    char sentence[101];
    char world[10][101];
    int top=-1;
    if(scanf("%d",&n)!=1{
        printf("Invalid input");
        return 0;
    }
    if(n<0||n>10){
        printf("Invalid input");
        return 0;
    }
    scanf(" %[^\n]",sentence);
    char *world-strtok(sentence," ");
    while(world!=NULL){
        strncpy(world[++top],world,100);
        world[top][100]='\0';
        world-strtok(NULL," ");
    }
    for(int i=top;i>-0;i--){
        printf("%s",worlds[i]);
        if(i>0) printf(" ");
    }
    return 0;
}