static void Main(string[] args)
int[,] matriz = new int[2, 5];
Console.WriteLine("Deseja (re)iniciar? (s/n)");
comeca = char.Parse(Console.ReadLine());
Console.WriteLine("Árvore caída, deseja transpor? (s/n)");
resposta = char.Parse(Console.ReadLine());
if (resposta == 's') { vida = vida + matriz[0, 0]; }
else { vida = vida + matriz[1, 0]; }
Console.WriteLine(" Vida = " + vida + " ");
Console.WriteLine("Montanha, deseja subir e pegar o mapa? (s/n)");
resposta = char.Parse(Console.ReadLine());
if (resposta == 's') { vida = vida + matriz[0, 1]; }
else { vida = vida + matriz[1, 1]; }
Console.WriteLine(" Vida = " + vida + " ");
Console.WriteLine("Nadar rio e chegar na outra margem? (s/n)");
resposta = char.Parse(Console.ReadLine());
if (resposta == 's') { vida = vida + matriz[0, 2]; }
else { vida = vida + matriz[1, 2]; }
Console.WriteLine(" Vida = " + vida + " ");
Console.WriteLine("Deseja correr da onça e subir na árvore? (s/n)");
resposta = char.Parse(Console.ReadLine());
if (resposta == 's') { vida = vida + matriz[0, 3]; }
else { vida = vida + matriz[1, 3]; }
Console.WriteLine(" Vida = " + vida + " ");
Console.WriteLine("Deseja pegar carona da gaivota e pular em cima do baú? (s/n)");
resposta = char.Parse(Console.ReadLine());
if (resposta == 's') { vida = vida + matriz[0, 4];}
else { vida = vida + matriz[1, 4]; }
if (vida >= 25 && resposta == 's') { Console.WriteLine(" O Tesouro Perdido é MEU!!!!"); }
if (vida < 0) { vida = 10;}
Console.Write(" Obrigado por jogar!");