public class Test{
public static void main(String[] args){
int i = 1;
int j = ++i + i++ + ++i + ++i + i++;
// i 2 2 3 4 5 5 6
// j 2 4 8 13 18
System.out.println(j);
}
}