#include <iostream>
#include <cstdio>
using namespace std;
int main(){
int ano, bno, anum, bnum;
double aper, bper;
scanf("%d%d%lf", &ano, &anum, &aper);
scanf("%d%d%lf", &bno, &bnum, &bper);
printf("VALOR A PAGAR: R$ %.2lf", anum*aper + bnum*bper);
return 0;
}