#include int main() { int percent, time; std::cin >> percent >> time; std::cout << time * 100 / (100 - percent) << std::endl; return 0; }