#include using namespace std; int main() { int x,a=1; cin>>x; while(x!=0) { a=a*10+(x%10); x/=10; } cout<