static void Main(string[] args)
        {
            Console.WriteLine("Hello and welcome in simply calculator");

            Calculate.InputMethod();

            bool turnOn = true;

            while (turnOn)
            {
                turnOn = Calculate.InputMethod();
            }
        }