#include <stdio.h> int main() { int a; while (scanf("%d", &a) != EOF) { printf("%d\n",(a/10)%10); // ( 123/10=12 )%10=2 取中间的一位数 } return 0; }