using System;
public class Program
{
public static void Main()
int i=1;
while(i<11){
Console.WriteLine(i);
// this is needed otherwise it will get stuck in a loop
i++;
}