class Link { Link next; int data; Link(int a_data, Link a_next) { next = a_next; data = a_data; } }