#include<stdio.h>
int main(){
    float price=0.0f;
    int a=0,b=0,c=0;
    scanf("%f %d %d %d",&price,&a,&b,&c);
    if((a==11&&b==11)){
        price*=0.7;
        if(c==1)price-=50;
        if(price<0)price=0;
        printf("%.2f",price);
    }else if(a==12&&b==12){
        price*=0.8;
        if(c==1)price-=50;
        if(price<0)price=0;
        printf("%.2f",price);
    }else{
        printf("%.2f",price);
    }
    return 0;
}