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

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