#include using namespace std; int main() { double N, M; cin >> N >> M; cout << (int)(N * (1 + M / 100)) << endl; }