#include<stdio.h>
#include<math.h>
float emi(int *p,int *r,int *n){
    int p=*p;
    float r=((*r)/100)/12;
    int n=*n;
    float a=p*r*pow((1+r),n);
    float b=pow((1+r),n)-1;
    double res=a/b;
    return res;
}
int main(){
    int p,n;
    float r;
    scanf("%d %f %d",&p,&r,&n);
    printf("%.2f",emi(&p,&r,&n));
    return 0;
}