Integers firstrange and secondrange are read from input. Complete the outer while loop so the inner loop executes (firstrange - 1) secondrange times.

a) while (firstrange > 0)
b) while (firstrange >= 0)
c) while (firstrange > 1)
d) while (firstrange >= 1)