Here we have a while
loop nested in another while
loop.
The outer loop executes, but the inner loop runs until it's condition is false
first, and then continues to loop through the outer loop. At this point the inner loop will always be false
.
Nope, that code won't run!