#include <iostream>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */

int main(void){
	int D,x;
	double P;
	cin>>D>>P;
	x = D + D * (P/100);
	cout<< x <<endl;
	
	return 0;
}