#include #include int main(void){ int K, S; float a, ans; scanf("%d %d", &K, &S); a = (float)S * 100.0 / (float)K; printf("%.0f\n", a); return 0; }