/*
#include <stdio.h>
int stack[100005]= {};
int top=-1;
void push(int k)
{
top++;
stack[top]=k;
}
int pop()
{
if(top!=-1)
{
return stack[top--];
}
}
int main()
{
int n, i, k, sum=0;
scanf("%d", &n);
for(i=0; i<n; i++)
{
scanf("%d", &k);
if(k!=0){
push(k);
}
else
{
pop();
}
}
while(top!=-1)
{
sum+=pop();
}
printf("%d", sum);
return 0;
}
*/
/*
#include<stdio.h>
#include<string.h>
int stack[100005]= {};
int top=-1;
void push(int str)
{
top++;
stack[top]=str;
}
int pop()
{
if(top!=-1)
{
return stack[top--];
}
}
int main(){
char str[100005]="";
int i;
scanf("%s", str);
for(i=0; str[i]!=NULL; i++)
{
push(str[i]-'0');
}
while(top!=-1)
{
printf("%d", pop());
}
return 0;
}
8
12345678
12,345,678
*/
#include<stdio.h>
#include<string.h>
int stack[1005]= {};
int top=-1;
void push(int str)
{
top++;
stack[top]=str;
}
int pop()
{
if(top!=-1)
{
return stack[top--];
}
}
int main()
{
int n, i;
char str[100005]="";
scanf("%d", &n);
scanf("%s", &str);
for(i=n; i>n; i--)
{
push(str[i]-'0');
}
while(top!=-1)
{
printf("%d", pop());
}
return 0;
}