class Program
{
static void Main(string[] args)
{
var nums = Enumerable.Range(1, 6);
var result1 = nums.Aggregate((a, b) => a * b);
Console.WriteLine($"6! = {result1}");
var helloWorld = "hello world my name
is Pawel".Split(' ');
var result2 = helloWorld.Aggregate((sentance, word) => $"{word} {sentance}");
Console.WriteLine(result2);
}
}