using System;
public class Program
{
public static void Main()
Console.WriteLine(TwoSum(new int[] {2, 7, 11, 15}, 9));
Console.WriteLine(TwoSum(new int[] {2, 7, 11, 15}, 12));
}
//Given an array of integers, return True if any two numbers add up to a specific target.
// You may assume that each input would have exactly one solution, and you may not use the same element twice.
static bool TwoSum(int[] numbers, int target)
bool result = false;
// Write your code here!
return result;