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