using System.Collections.Generic;
public static void Main()
Dictionary<string,string> emails= new Dictionary<string,string>();
while((input = Console.ReadLine()) != "stop")
string email= Console.ReadLine();
foreach(var pair in emails.Where(pair => ! pair.Value.EndsWith("us")&& ! pair.Value.EndsWith("uk")))
Console.WriteLine($"{pair.Key}->{pair.Value}");