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

int main() {
	int d, p;
	cin >> d >> p;

	cout << d * (100 + p) / 100 << endl;


	return 0;
}