using System;
using System.Collections.Generic;
public class Program
{
public static void Main()
Stack<string> planets = new Stack<string>();
// Add items for testing
planets.Push("Mercury");
planets.Push("Venus");
planets.Push("Earth");
// Peek() : Returns the highest element without removing it
Console.WriteLine(planets.Peek());
}