#include<iostream>
using namespace std;
int main() {
	int D, P;
	cin >> D >> P;
	int cash = D * (100 + P)/100;
	cout << cash << endl;
	return 0;
}