using System;
public class Program
{
public static void Main()
int zahl =0;
while(zahl < 11)
Console.WriteLine(zahl);
zahl++;
}