#include #include int main() { int K, S; scanf("%d%d", &K, &S); float A = (float)((100 * S) / (100 - K)); printf("%d", (int)floor(A)); return 0; }