using System; using System.Collections.Generic; using System.Text; namespace BoringLecture { class Program { static void Main(string[] args) { int start = 0; Console.WriteLine("Please enter starting number"); start = Int32.Parse( Console.ReadLine()); int end = 0; Console.WriteLine("Please enter ending number"); end = Int32.Parse(Console.ReadLine()); for (int counter = start; counter <= end; counter++) { Console.WriteLine(counter); } } // main } // class } // namespace