/******************************************************************************
Welcome to GDB Online.
GDB online is an online compiler and debugger tool for C, C++, Python, Java, PHP, Ruby, Perl,
C#, VB, Swift, Pascal, Fortran, Haskell, Objective-C, Assembly, HTML, CSS, JS, SQLite, Prolog.
Code, Compile, Run and Debug online from anywhere in world.
*******************************************************************************/
using System;
using System.Linq;
class HelloWorld {
static void Main() {
int start = 11, last = 18, n = 12;
int[] arr = Enumerable.Range(start, last - start + 1).ToArray();
int count = arr.Count();
for (int j=0; j < n; ++j) {
Console.Write($"device{(j)} ");
for (int i = 0; i < count; i++) {
Console.Write($"name{arr[(i + j) % count]} ");
}
Console.WriteLine();
} // цикл элементов
}
}