public interface Cont<E> {
  E get();
  void set(E e);
}
