Exemplo n.º 1
0
 static void Main()
 {
     Solution p = new Solution();
     int t = Convert.ToInt32(Console.ReadLine());
     for (int a0 = 0; a0 < t; a0++)
     {
         string[] tokens_n = Console.ReadLine().Split(' ');
         int money = Convert.ToInt32(tokens_n[0]);
         int price = Convert.ToInt32(tokens_n[1]);
         int wrappers = Convert.ToInt32(tokens_n[2]);
         p.chocolateFeast(money, price, wrappers);
     }
     p.printResult();
     Console.ReadKey();
 }