Tester

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