11. Cinema
Моля,ако някой може да ми обясни,защо "judge" ми дава 70/100.Къде греша?
using System;
namespace Cinema
{
    class Cinema
    {
        static void Main()
        {
            var typeProjection = Console.ReadLine().ToLower();
            int rows = int.Parse(Console.ReadLine());
            int columns = int.Parse(Console.ReadLine());
            int full = rows * columns;
            double result = 0.0;
            switch (typeProjection)
            {
                case "premier":
                    result = full * 12.00;
                    break;
                case "normal":
                    result = full * 7.50;
                    break;
                case "discount":
                    result = full * 5.00;
                    break;        
                   
                                 
            }
            Console.WriteLine("{0:0.00} leva", result);
        }
    }
}