#include<stdio.h>
int main(void){
	int d,p;
	scanf("%d%d",&d,&p);
	
	printf("%d\n",d*(100+p)/100);
	return 0;
}