using System;
public class Program
{
public static void Main()
string[]series = {"The Boys", "Stranger Things", "100 dias de Dev", "Supernatural", "The Office"};
for (int i = 0; i <series.Length; i++)
Console.WriteLine(series[i]);
}
//Console.WriteLine("Hello World");