using System;
namespace Numbers_From_1_To_100
{
internal class Program
{
static void Main(string[] args)
{
for (int numbers = 1; numbers <= 100; numbers++)
{
Console.WriteLine(numbers);
}
}
}
}
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)