0 / 60 seg.

What will be the output of the following Java code using a "while" loop?

int count = 10;
while (count > 0) {
    System.out.println(count);
    count--;
}