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