static void Main(string[] args)
        {
            Stopwatch stopWatch = new Stopwatch();
            stopWatch.Start();

            Day day = new DayTwo();
            var input = File.ReadAllLines("input/day2.txt");
            Console.WriteLine("Result: " + day.Compute(input));

            stopWatch.Stop();
            DisplayDuration(stopWatch);

        }