import java.rmi.*;

interface Transferable extends Remote {
  String getNumber () throws RemoteException;
}

