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