#include<stdio.h> int main() { int n,s=0,cnt=0; scanf("%d",&n); while(n!=0){ s=s*10+n%10; cnt++; n/=10; } printf("%d位数,逆序数:%d",cnt,s); return 0; }