Schreibe ein Programm, das von 10 an rückwärts zählt

int n = 10;
while(n >= 1) {
   print(n + ", "); 
   n--;
}
println("0!");