using System;
public class Program
{
public static void Main()
Console.WriteLine("Which movie genre is your favourite?");
string genre = Console.ReadLine();
Console.ReadLine();
switch (genre)
case "comedy":
Console.WriteLine("you should watch friends");
break;
case "Horror":
Console.WriteLine("You should watch the movie it");
}