using System;
public class Program
{
public static void Main()
int o = 1;
for(int i = 1; i < 8; i++)
o = o * i;
Console.WriteLine(o);
}