#include using namespace std; int main(){ int n; int s=0; cin >>n; while(n){ s=s*10+n%10; n/=10; } cout <