import java.awt.geom.Ellipse2D;

/**
 *
 * @author pardesha
 */
public class Test {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
Ellipse2D.Double e = new Ellipse2D.Double(-1,1,2,2);
System.out.println(e.getCenterY());
 // TODO code application logic here
    }
    
}