using System;
using System.Linq;
public class Program
{
public static void Main()
Enumerable.Range(1, 10).Select(x => (x % 2) switch {
0 => "Пук",
_ => "Среньк"
}).ToList().ForEach(x => Console.WriteLine(x));
}