using System;
public class Program
{
public static void Main()
//Luis Felipe
double x;
Console.WriteLine("Hello! please write a number and I'll tell you the times table from 1-10 of that number");
x =double.Parse(Console.ReadLine());
for (int i=1;i<=10;i++)
Console.WriteLine(i * x);
}