What is the output when following program is executed? Please show a screenshot of the execution result.
In your screenshot, please include unique background features (such as a path or a wallpaper) that can identify you as the owner.
public class AbsMin {
public static void main(String args[]) {
int X = Integer.MIN_VALUE;
System.out.println("X=" + X);
System.out.println("absolute value of X=" + Math.abs(X));
}
}