public class test { public static void main (String[] args){ int i=1000; while (i>0){ System.out.println("Isi hat Lust, aber sie hatte es schon "+i+" mal"); i=i-1; } } }