using System;
public delegate int SomeOperation(int i, int j);
public class Program
{
public static void Main()
SomeOperation add = Sum;
}