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