import java.util.List;


public interface Node {
  Node add(int x);
  Pair<Node> cut(int key);
  List<Integer> toList();
}
