Increases value with 1

package ArithmeticOperations;

public class Increment {
	void start() {
		int sum = 0;
		sum++;
	}

	public static void main(String[] args) {
		new Increment().start();
	}
}

Value of sum will be: 1