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