using System;
using System.Linq;
using System.Text;
using System.Collections.Generic;
public class Program
{
//44001 - Hafizd Mahardhika
delegate int multiply(int x,int y);
public static void Main()
// Write a lambda expression that will return the sum of two number
multiply mt = (x, y) => x+y;
Console.WriteLine(mt(1,3));
//expected result 4
}