#include using namespace std; int main() { int goods, tax; cin >> goods >> tax; cout << goods * 1 + goods*tax / 100; }