#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <math.h>

int main(void) {
	long double D;
	double P;

	scanf("%llf %lf", &D, &P);
	printf("%.0f\n", floor((D / 100) * (100 + P)));

	return 0;
}