using System;
public class Program
{
public static void Main()
string[] movies =new string[4];
Console.WriteLine("Enter the movie name");
for(int i=0;i<movies.Length;i++)
movies[i]=Console.ReadLine();
//Console.WriteLine(movies[i]);
}
Array.Sort(movies);
for(int i=0;i<movies.Length;i++){
Console.WriteLine(movies[i]);