// editor1

#include<stdio.h>

long double pow(double base, double exp){
    long double result=1;
    for(int i=0; i<exp;i++){
        result*=base;
    }
    return result;
}

int main(){
    double P, R, N;
    long double EMI;
    scanf("%lf %lf %lf", &P, &R, &N);
    if(N==0){
        printf("Invalid input");
        return 0;
    }
    R/=N*100;
    EMI=((P*R)*pow(1+R, N))/(pow(1+R, N)-1);
    printf("%.2llf", EMI);
}