static void SpausdintiTaskus(Komanda A, string antraštė)
        {
            Console.WriteLine(antraštė);

            for (int i = 0; i < A.ImtiN(); i++)
            {
                for (int j = 0; j < A.ImtiM(); j++)
                {
                    Console.Write("{0, 3:d};", A.ImtiTaskus(i, j));
                }
                Console.WriteLine();
            }
            Console.WriteLine();
        }