public static void Main(string[] arg)
        {
            Console.WriteLine("Введите параметры прямоугольника");
            int a = InputUtils.EnterInteger();
            int b = InputUtils.EnterInteger();

            Console.WriteLine("Определяем площадь прямоугольника со сторонами '{0}' и '{1}'", a, b);
            Calculator.Multiply(a, b);
            Console.ReadKey();
        }
        static void Main(string[] args)
        {
            RandomArrayUtils ru = new RandomArrayUtils();

            Console.WriteLine("Укажите тип элементов массива: \n1) Строковый(по умолчанию)\n2) Числовой");
            int choise = InputUtils.EnterInteger();

            Console.WriteLine("Укажите размерность массива: ");
            int size = InputUtils.EnterInteger();

            switch (choise)
            {
            case (2):
                long[] arrInt = ru.BuildLongArray(size);
                Print1DArr.PrettyPrintArr(arrInt);
                break;

            default:
                string[] arrStr = ru.BuildStringArray(size);
                Print1DArr.PrettyPrintArr(arrStr);
                break;
            }
            Console.ReadKey();
        }