Ayuda.. los casos de prueba están bien y no aprueba
class Program { static void Main(string[] args) { int num = Convert.ToInt32(Console.ReadLine()); /* 1 - Sports 2 - Politics 3 - Business 4 - Technology 5 - Art */ //tu código va aquí switch (num) { case 1: Console.WriteLine("Sports"); break; case 2: Console.WriteLine("Politics"); break; case 3: Console.WriteLine("Business"); break; case 4: Console.WriteLine("Art"); break; } } } }