#include <iostream> using namespace std; int main() { int A; int tempA; cin >> A; tempA = A; while (tempA > 0) { cout << tempA % 10; tempA /= 10; } }