#include #include using namespace std; int main() { int n, m; double res = 0; cin >> n >> m; res = static_cast(m) / 100; cout << n + (n * res) << endl; return 0; }