#include void print_revers(int x); int main() { int x; scanf("%d", &x); print_revers(x); return 0; }