#includeint fn(float x){int y=(int)(x*100)%10;printf("%d",y);}int main(){float x;scanf("%f",&x);fn(x);}