using System;
public class Program
{
public static void Main()
}
public static int SumList(Node head)
Node p =head;
int cntr;
while(p!= null)
cntr += p.GetValue();
p = p.GetNext();
return cntr;