using System;
namespace Numbers_N_1
{
internal class Program
{
static void Main(string[] args)
{
for (int number = int.Parse(Console.ReadLine()); number >= 1; number--)
{
Console.WriteLine(number);
}
}
}
}
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)