zahl = 0

while(zahl <= 20):
    print(zahl)
    zahl = zahl +1
    
print("Du hast das Ende erreicht.")