using System;
/*
* input: array of int 12, 24, 4, 53 ...
* output: array of same size, where each element is the product of all elements
* from input array excluding corresponding by index,
print resulting array to console
* example: [1,2,3,4] => [24,12,8,6], where 24=2*3*4, 12=1*3*4, 8=1*2*4, 6=1*2*3
* Requirements: <O(n^2)
*/
public class Program
{
public static void Main()
Console.WriteLine("Hello World");
int [] input = {1, 2, 3, 4};
//Put your solution below this line
}