Run ID:125439
提交时间:2025-07-14 16:33:21
int main() { int a, b; scanf("%d", &a); b = a % 10; cout << b; a /= 10; cout << a; return 0; }