public class Main {
  public static void main(String[] args) {
    int j = + -1234;
    System.out.printf("%d", j);
    System.out.println();
    System.out.println(j);
  }
}
The Result is -1234. Can any body explain me why the result is -1234 is coming?

0 + (-1234)