- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text.RegularExpressions;
- namespace ForgetCode
- {
- class Program
- {
- static void Main(string[] args)
- {
- for (int counter = 1; counter <= 1000; counter++)
- {
- if (counter == 10)
- break;
- Console.WriteLine(counter);
- }
- }
- }
- }