26082

#include <stdio.h>

int main(void){
    int c_price, c_performance, w_price;

    // 입력
    scanf("%d %d %d", &c_price,&c_performance,&w_price);
    
    // warboy 성능
    int w_performance = w_price*(3*(c_performance/c_price));
    
    // 출력
    printf("%d", w_performance);
    return 0;
}

+ Recent posts