#include #include using namespace std; int main() { int d, p; cin >> d >> p; // 整数と文字列を空白で区切って、標準出力に書き出す。 cout << (int)(d+d*p/100) << endl; return 0; }