#include #include using namespace std; int main(){ int a, b; cin >> a >> b; int tax = a*(b+100)/100; cout << tax << endl; }