#include <iostream>
using namespace std;
int main() {
// INGREDIENTES POR JARRA 1
const int LIMONES_POR_JARRA = 4;
const double AGUA_POR_JARRA = 1.5;
const double AZUCAR_POR_JARRA = 0.2;
//VARIABLES 1
int jarras;
int total_de_limones_que_se_necesitan;
double total_litros_de_agua_que_se_ocupa;
double total_kg_de_azucar_necesaria;
//COSTO POR JARRA 2
const double COSTO_POR_LIMON = 2.50;
const double COSTO_POR_LITRO_AGUA = 0.50;
const double COSTO_POR_KG_AZUCAR = 20.00;
//VARIABLES 2
double costo_total_limones;
double costo_total_agua;
double costo_total_azucar;
double costo_produccion_total;
//ENTRADA DE DATOS
cout << "Vamos a calcular los ingredientes para una limnomada" << endl;
cout << "Cuantas Jarras de limonada deceas hacer?: ";
cin >> jarras;
//CALCULO DE CANTIDADES
total_de_limones_que_se_necesitan = LIMONES_POR_JARRA * jarras;
total_litros_de_agua_que_se_ocupa = AGUA_POR_JARRA * jarras;
total_kg_de_azucar_necesaria = AZUCAR_POR_JARRA * jarras;
//CALCULO DE INGREDIENTES
costo_total_limones = total_de_limones_que_se_necesitan* COSTO_POR_LIMON;
costo_total_agua = total_litros_de_agua_que_se_ocupa* COSTO_POR_LITRO_AGUA;
costo_total_azucar = total_kg_de_azucar_necesaria* COSTO_POR_KG_AZUCAR;
//CALCULO DE COSTO
costo_produccion_total = costo_total_limones + costo_total_agua + costo_total_azucar;
//SALIDA DE DATOS
cout << "\n--- Ingredientes Necesarios ---\n";
cout << "Limones necesarios: " << total_de_limones_que_se_necesitan << endl;
cout << "Litros de agua necesarios: " << total_litros_de_agua_que_se_ocupa<< endl;
cout << "Kilogramos de azucar necesarios: " << total_kg_de_azucar_necesaria << endl;
cout << "\n--- Estimacion de Costos ---\n";
cout << "Costo total de limones: $" << costo_total_limones << endl;
cout << "Costo total de agua: $" << costo_total_agua << endl;
cout << "Costo total de azucar: $" << costo_total_azucar << endl;
cout << "\n--- Costo Total ---\n";
cout << "Costo total de produccion: $" << costo_produccion_total << endl;
return 0;
}