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