using System;
public class Program
{
public static void Main()
int n = 10;
for(int i = 0; i < 10 ; i++){
Console.WriteLine(n);
n += 10;
}