#include #define rep(i, n) for(int (i) = 0; (i) < (n); (i)++) #define repe(i, n) for(i = 0; i <= (n); i++) #define repr(i, n) for(int (i) = (n); (i) > 0; --(i)) #define repre(i, n) for(int (i) = (n); (i) >= 0; --(i)) #define repi(i, n) for(int (i) = 1; (i) < (n); ++(i)) using namespace std; using ll = long long; using ull = unsigned long long; using P = pair; using Graph = vector>; const int INF = INT32_MAX; const ll MOD = 1e9+7; signed main() { ll P, T; cin >> P >> T; double tax = (100 + T) * P; cout << (ll)(tax / 100) << endl; return 0; }