#include <iostream> using namespace std; int main() { double a[6] = {0,4,4.5,5,2,1.5}; int x,y; cin >> x >>y; printf("Total: R$ %.2lf",a[x] * y); }