using System.Console;
public class Program {
public static void Main() {
var texto = "ZACKSON MOREIRA MORGAN (zackson.morgan)";
texto = texto.Substring(texto.IndexOf("(") + 1);
texto = texto.Substring(0, texto.IndexOf(")"));
WriteLine(texto);
}