class Program {
public static void main(String[] args) {
double x = 3.14;
double y = -2;
// public static double copySign(double magnitude, double sign)
System.out.println(Math.copySign(x, y));
System.out.println(Math.copySign(y, x));
}
}
/*
run:
-3.14
2.0
*/