/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

/**
 *
 * @author felix
 */
public class compara {
    static public void main(String args[]){
        Double a = new Double(4.5);
        Double b = new Double(4.5);
        
        System.out.printf("%d\n", a.compareTo(a));
    }

}
