public static void Main()
string email = Console.ReadLine();
int indeks = email.IndexOf('@');
string other = email.Substring(indeks+1);
string eml = email.Substring(0, indeks);
Console.WriteLine("Това е потребител {0} с имейл на сървъра {1}", eml,other);