import java.rmi.Remote; import java.rmi.RemoteException; public interface RMIInterface extends Remote { public String mult(int number) throws RemoteException; public String div(int number1) throws RemoteException; }