//Given two arrays of integers, find all pairs or combinations of integers from each array that sum to zero. For each that is discovered, print the pair values to the console.
//E.g., if A = [0, -3, 6, 8, -1] and B = [1, 8, -3, 0, 15, -11, -6], the solution should correctly identify the pairs [(0,0), (6,-6), (-1,1)]
//The arrays are unbounded and can be any size
//Elements in the arrays are not in any order (unsorted)
using System;
public class Program
{
public static void Main()
Console.WriteLine("Hello World");
}