Tester

public class Tester {
  public static void main(String[] args) {
        int result = 15 - 11;
        do
            result++;
        while ( 11 > result);
        result += 3 ;
        
  }
}
What is the final value of result?