using System;
using System.Data.SqlClient;
public class Program
{
private static string TranslateToPolish(string word)
switch(word)
case "ELEPHANT":
return "SLON";
default:
return word;
}
public static void Main()
string[] animals = new [] {"DOG","ELEPHANT"};
Console.WriteLine(TranslateToPolish(animals[1]) + "CE!!");