using System.Collections.Generic;
static void Main(string[] args)
Console.WriteLine("====================================");
Console.WriteLine(" SC00039 Dibuat Oleh : ASTI ");
Console.WriteLine(" Stack Angka tipe data Int ");
Console.WriteLine(" November,Senin-27-2023 ");
Console.WriteLine("====================================");
int [] arr = new int[]{ 90, 102, 205, 49, 29};
Stack<int> myStack = new Stack<int>(arr);
foreach (var abc in myStack)
Console.Write(abc + " | ");