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