public static void Main()
double tripPrice = double.Parse(Console.ReadLine());
int puzzelCount = int.Parse(Console.ReadLine());
int dollCount = int.Parse(Console.ReadLine());
int bearCount = int.Parse(Console.ReadLine());
int minionCount = int.Parse(Console.ReadLine());
int trukCount = int.Parse(Console.ReadLine());
toyPrice += puzzelCount*2.60;
toyPrice += dollCount*3.00;
toyPrice += bearCount*4.10;
toyPrice += minionCount*8.20;
toyPrice += trukCount*2.00;
int totalToys = puzzelCount+dollCount+bearCount+minionCount+trukCount ;
toyPrice +=toyPrice*0.90;