public static void MyMethod(string word){
int length = word.Length;
if(length%2==0 && length%4==0){
Console.WriteLine("Stack Overflow!");
Console.WriteLine("Stack");
Console.WriteLine("Overflow");
Console.WriteLine("The length of the entered word {0} is neither a multiple of 2 or 4",length);
public static void Main()