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