// Count Interface

import java.rmi.*;

public interface Count extends Remote {
  void set(int val) throws RemoteException;
  void reset() throws RemoteException;
  int get() throws RemoteException;
  int increment() throws RemoteException;
}