import java.rmi.Remote;
import java.rmi.RemoteException;

public interface Compute extends Remote {
    int executeCalculation (int i) throws RemoteException;
    String tellmeWhoYouAre (String name) throws RemoteException;
}
