Consider the following code segment:

int value = 15;
while (value < 28) {
System.out.printIn (value);
value++;
}

What are the first and last numbers output by the code segment?

A) 15 and 27
B) 15 and 28
C) 16 and 27
D) 16 and 28
E) 16 and 29