#include <iostream>
using namespace std;
int main()
{
int k;
int a,b,c,d,e;
cin>>k;
if(k>=10&&k<=99)
{
a=k%10;
b=k/10;
cout<<a<<b<<endl;
}
if(k>=100&&k<=999)
{
a=k%100%10;
b=k%100/10;
c=k/100;
cout<<a<<b<<c;
}
if(k>=1000&&k<=9999)
{
a=k%1000%100%10;
b=k%1000%100/10;
c=k%1000/100;
d=k/1000;
cout<<a<<b<<c<<d;
}
if(k>=10000&&k<=99999)
{
a=k%10000%1000%100%10;
b=k%10000%1000%100/10;
c=k%10000%1000/100;
d=k%10000/1000;
e=k/10000;
cout<<a<<b<<c<<d<<e;
}
return 0;
}