#include using namespace std; int main(void){ int a, b; cin >> a >> b; double c = (1.0+b/100.0)*a; cout << (int)c << endl; return 0; }