/*
 * RemoteInterface interface
 */

import java.rmi.*;

public interface RemoteInterface extends Remote {

  public int tuwas(int l) throws RemoteException;

}
