using System;
using System.Collections.Generic;
using System.Text;
using System.ComponentModel;
class LambdaExpression
{
static void Main()
{
Func func = (x, y) => (x * y).ToString();
Console.WriteLine(func(5, 20));
}
}