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