public static void Main()
Console.WriteLine("NUMBER SKIPPER\n----------------------------------------------\n\nThis program will show you a list of evenly spaced out numbers.\n ");
Console.WriteLine("What number would you like to start at?");
startNum = Convert.ToInt16(Console.ReadLine());
Console.WriteLine("What number would you like to end at?");
stopNum = Convert.ToInt16(Console.ReadLine());
Console.WriteLine("What number should we skip by (step)?");
step = Convert.ToInt16(Console.ReadLine());
for(int i = 1; startNum <= stopNum; i++)
Console.WriteLine(startNum = startNum + step);