#include int main(){ double input_k, input_s; int responce_time; scanf("%lf %lf", &input_k, &input_s); responce_time = (int)(input_s * 100 / (100 - input_k)); printf("%d\n", responce_time); return 0; }