class Node: def init(self,data): self.data = data self.next = None
class LinkedList: def init(self): self.head = None self.size = 0