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