class Node(): def __init__(self, val, next=None): self.val = val self.next = next def __str__(self): return self.val