#include using namespace std; int main() { int cstD, txP; cin >> cstD >> txP; int ans = cstD; ans += cstD * txP / 100; cout << ans << endl; }