#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("%d.2f",emi);
    return 0;
}