#include #include #include using namespace std; int main(){ double D; double P; cin>>D; cin>>P; P=1+P/100; printf("%0.0lf",D*P); return 0; }