Tester

public class Tester {
  public static void main(String[] args) {

	int j = 0;
        int result = 0;
        do{
           j++;
	   result += 5;
        }while (j < 5);

  }
}
What is the final value of result?