using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace _11_generator
{
public class Program
public static void Main(string[] args)
for (int n = 1; n < 100; n++)
if (IsItAMultipeOf11(n)) Console.WriteLine(n);
}
Console.ReadLine();
static bool IsItAMultipeOf11(int testable)
int r = testable % 11;
if (r == 0) return true;
return false;