using System.Collections.Generic;
using System.Threading.Tasks;
namespace _2023_11_07_SC00031_
static void Main(string[] args)
Console.WriteLine("===================================================");
Console.WriteLine(" Dibuat Oleh : dea nur ");
Console.WriteLine(" SC00031 ");
Console.WriteLine(" Membuat Array Multidimensi Baris 2, Kolom 4 ");
Console.WriteLine("===================================================");
int[,] angka = { { 2, 7, 9,1 }, { 8, 5, 4,3 } };
Console.WriteLine(angka[0,2]);