public class List { public int value; public List next; public List(int x) { value = x; } }