#include int main(void) { int i, N; char str[20]; scanf("%d", &N); for(i = 0; i < N; i++){ scanf("%s", str); printf("%s", str); } return 0; }