#include<bits/stdc++.h> using namespace std; int nxs(int x){ cout<<x%10; x/=10; if(x!=0)nxs(x); } int main() { int n; cin>>n; nxs(n); return 0; }