using System;
public class TimeElapsed
{
public static void Main(string[] args)
int number = 10;
int counterOne = 14;
int anotherNumber = 20;
int counterTwo = 2;
while (counterTwo < 9)
Console.WriteLine(number % anotherNumber + counterTwo * counterOne);
number = anotherNumber;
counterTwo = counterTwo + 1;
}