#include #include using namespace std; int main() { int a, b; std::cin >> a >> b; int c = a * (100 + b) / 100; std::cout << c; }