void main()
{
	LIST L;

	L.Insert(2, 1);
	L.Insert(3, 2);
	L.Insert(4, 3);
	L.Insert(5, 4);

	cout<<L.Retrieve(2)<<endl;

}