public static void Main()
Console.WriteLine("Enter a word which is more than 4 letters long");
string word= Console.ReadLine();
Console.WriteLine("Enter another word that is more than 4 letters long");
string word2= Console.ReadLine();
int wordLength= word.Length;
int word2Length= word2.Length;
string wordHalf= word.Substring(0,a);
string wordHalf2= word2.Substring(b,c);
Console.WriteLine("The magic word we made is... " +wordHalf + wordHalf2);