#include #include using namespace std; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); char S[101]; uint32_t N; cin >> N >> S; S[N - 1] = '\0'; cout << S + 1 << '\n'; return 0; }