ulong F2= 1;
F2 = Convert.ToUInt64(Console.ReadLine());
ulong F3 = 1;
while (F2 > 1)
{
F3 = F3 * F2;
F2 = F2 - 1;
}
F2 = Convert.ToUInt64(Console.ReadLine());
ulong F3 = 1;
while (F2 > 1)
{
F3 = F3 * F2;
F2 = F2 - 1;
}