using System;
public class Program
{
public static void Main()
int number = 10;
int anotherNumber = 20;
int counterOne = 14;
int counterTwo = 2;
while(counterTwo < 9)
Console.WriteLine(number % anotherNumber + counterTwo * counterOne);
number = anotherNumber;
counterTwo = counterTwo + 1;
}
/*
int counter = 0;
int anotherNumber = 2;
for (int number = 1; number <= 9; number++)
counter = counter + anotherNumber;
Console.WriteLine(number * counter - counter % number);
anotherNumber = anotherNumber + number;
*/