using System.Collections.Generic;
public static void Main()
Console.WriteLine("Hello World");
LinkedList<int> ll = new LinkedList<int>();
LinkedListNode<int> slow = ll.First;
LinkedListNode<int> fast = ll.First;
while(fast != null && fast.Next != null)
Console.WriteLine(slow.Value);