[Judge] C# Basics - Cinema- грешка при компилация
Здравейте,
Решавам задачата от преден изпит (11.04.вечер)- Cinema. При мен си тръгва без проблем и смята вярно примеритe, но когато я качвам в джъдж системата ми дава "compile time error". Някой има ли представа защо? Ето кода, но, пак казвам- на моя компютър няма проблем с компилиране и стартиране на програмата.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
class Cinema
{
    static void Main(string[] args)
    {
        string type = Console.ReadLine();
        int rows = int.Parse(Console.ReadLine());
        int cols = int.Parse(Console.ReadLine());
        decimal costPr = 12.00m;
        decimal costNorm = 7.50m;
        decimal costDisc = 5.00m;
        decimal income;
        if (type == "Premiere")
        {
            income = rows * cols * costPr;
        }
        else if (type == "Normal")
        {
            income = rows * cols * costNorm;
        }
        else
        {
            income = rows * cols * costDisc;
        }
        Console.WriteLine("{0:f2}", income + " leva");
    }
}