public static void Main()
var movieType = Console.ReadLine().ToLower();
var rows = int.Parse(Console.ReadLine());
var cols = int.Parse(Console.ReadLine());
if (movieType == "premiere")
else if (movieType == "normal")
else if (movieType == "discount")
int fullHall = rows * cols;
double profit = fullHall * price;
Console.WriteLine("{0:f2}", profit);