using System;
public class Program
{
public static void Main()
int x = 0;
int index = 1;
while(index<=100){
//How do we get x from 1 to 100?
//How do we get x from 1 to 1000?
Console.WriteLine("Hello World, This code has been run "+index+" Times");
Console.WriteLine(x);
index++;
}