The following SAS program is submitted: data work.pieces;
do while (n lt 6); n + 1;
end; run;
Which one of the following is the value of the variable N in the output data set?

A. 4
B. 5
C. 6
D. 7