I do not understand why 103 and 109 are printed.
If the increment operator is being used, should it not be 104 and 109?
int h = 103;
int p =5;
System.out.println(h++);
System.out.println (h+p);`
Actual output:
103
109
Expected output:
104
105