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