#include using namespace std; int main(void){ long long s, k; cin >> s >> k; cout << k * 100 / s << endl; return 0; }