#include<bits/stdc++.h>
using namespace std;
using ll=long long;
#define all(v) v.begin(),v.end()
#define rall(v) v.rbegin(),v.rend()
template<class T> bool chmax(T &a, T b){if (a < b){a = b;return true;} else return false;}
template<class T> bool chmin(T &a, T b){if (a > b){a = b;return true;} else return false;}

void Solve(){
    string S;
    cin>>S;
    int N=S.size();
    for(int i=0;i<N;i++){
        if('1'<=S[i]&&S[i]<='9'){
            for(int j=i-1;j>=0;j--)cout<<S[j];
            for(int j=i;j<N;j++)cout<<S[j];
            cout<<"\n";
            return;
        }
    }
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    Solve();
}