using System;
public class Program
{
public static void Main()
int n = 90;
int i = n;
while (i < 100)
i++;
Console.WriteLine(i);
}