#include <bits/stdc++.h>
using namespace std;

int main() {
	cin.sync_with_stdio(0), cin.tie(0), cout.tie(0);
	int d, p;
	cin >> d >> p;
	double x = d + d * ((double)p / 100);
	int y = x;
	cout << y << endl;
}