Exemplo n.º 1
0
        public static void Main()
        {
            var smartphone = new Smartphone();

            var numbers = Console.ReadLine().Split();

            var sites = Console.ReadLine().Split();

            foreach (var number in numbers)
            {
                smartphone.Call(number);
            }

            foreach (var site in sites)
            {
                smartphone.Brows(site);
            }
        }