#include using namespace std; int main() { int D, P; cin >> D >> P; cout << (D * 100 + D * P) / 100 << endl; }