#include <stdio.h>

#define PRICE 30;

int main() {
    float num,total;
    
    scanf("%f", &num);

    total=num*PRICE;
    
    printf("total = %f \n", total);
}