public static void Main()
Console.WriteLine("Enter a string");
string userInput = (Console.ReadLine());
Console.WriteLine(getNewString(userInput));
public static string getNewString(string newString)
var test = newString.Substring(0,1);
return test + newString + test;