AddServerInf.java
Compile this file in command prompt as
> javac AddServerInf.java
import java.rmi.Remote;
import java.rmi.RemoteException;
public interface AddServerInf extends Remote{
    double add(double d1, double d2) throws RemoteException;
}
 Live to Learn!
  Live to Learn!
    