using System.Collections.Generic;
public static void Main()
var elNum = new Stack<int>();
Console.Write("Number of elements in Stack: {0}", elNum.Count);
Console.WriteLine(elNum.Peek());
Console.WriteLine(elNum.Peek());
Console.WriteLine("At the end the number of elements is: {0}",