using System;
public class Program
{
public static void Main()
int x = 4;
while (x<100)
x = x + 1;;
Console.WriteLine(x);
}