#include <iostream>

struct venta {
    std::string item = "";
    unsigned cantidad = 0;
    double precio = 0;
    double total = 0;
};

int main(void) {
    venta v;
    std::cout << "Item, cantidad y precio" << std::endl;
    std::cin >> v.item >> v.cantidad >> v.precio;
    v.total = v.cantidad * v.precio;
    std::cout << "Total: $ " << v.total << std::endl;
    return 0;
}

