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

int main() {
  double money, duration, interest;
  scanf("%lf %lf %lf", &money, &duration, &interest);
  printf("%.f\n", money * pow(1 + interest / 100, duration));
  return 0;
}