While Loop in Jsp

<% int n = 0; out.println("Number:"); while(n<10){ out.println(" , "+ n); n++; } %>