using System;
using System.Collections;
public class Program
{
public static void Main()
Stack c= new Stack();
c.Push(1);
c.Push("a");
c.Push(false);
c.Push(1.5);
foreach(object l in c)
Console.WriteLine(l);
}