ЗАДАЧА 11 - CINEMA

Здравейте :) решавам задачата и работи правилно но judge ми дава 0 /100

ето го кода 

 

using System;
namespace cinema1
{
    class Program
    {
        static void Main(string[] args)
        {
            string type = Console.ReadLine(); ;
            int rows = int.Parse(Console.ReadLine());
            int columns = int.Parse(Console.ReadLine());
            double premiere = rows * columns * 12.00;
            double normal = rows * columns * 7.50;
            double discount = rows * columns * 5.00;
            if (type == "premiere") 
            Console.WriteLine("{0:f2}",premiere);
            else if(type=="normal")
                Console.WriteLine("{0:f2}", normal);
            else if (type=="discount")
                Console.WriteLine("{0:f2}", discount);
        }
    }
}