using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Fatorial
{
class Program
{
static void Main(string[] args)
{
int fatorial = 1;
for (int n = 1;n <= 10; n++)
{
fatorial = fatorial * n;
Console.WriteLine(fatorial);
}
Console.ReadLine();
}
}
}