#include using namespace std; int main(){ int n; string s; cin >> n >> s; for(int i = 1; i < n - 1; i++){ cout << s[i]; } cout << endl; }