public static void Main()
Console.WriteLine("Hello World");
Console.WriteLine(Program.solution("4(the)"));
public static string solution(string input)
int i = Convert.ToInt32(input.Substring(0,input.IndexOf('(')));
string temp1,temp2,output=string.Empty;
temp1 = input.Substring(input.IndexOf('(')+1);
temp2 = temp1.Substring(0,temp1.IndexOf(')'));
output = string.Concat(output,temp2);