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

long long d, p;

int main()
{
	cin >> d >> p;
	cout << d * (100 + p) / 100 << endl;
}