using System;
public class Program
{
public static void Main()
Func<string, string> trippleConcat = x=>x+x+x;
string result=trippleConcat("Hello my name is...");
Console.WriteLine(result + "wika wika, the real slim shady");
}