почему получается 13?
package com.javarush.task.task04.task0442;
import java.io.BufferedReader;
import java.io.InputStreamReader;
/*
Суммирование
*/
public class Solution {
public static void main(String[] args) throws Exception {
BufferedReader g= new BufferedReader (new InputStreamReader(System.in));
int a= Integer.parseInt(g.readLine());
int j= 0;
if(a!=-1){
j=j+a;}
int x= j-1;
System.out.println(x);
}
}