#include<stdio.h>
#include<math.h>
int main(){
    float,p,r,n,i;
    scanf("%f %f %f",&p,&r,&n);
    if(p = 0|| r<=0)||n<=0{
        printf("Invalid input");
        return 0;
    }
R=r/(12*100);
EMI=(p*r*pow(1+r,n))/pow(1,r+n)-1);
printf("%.2f",EMI);
return 0;
}