using System;
public class Program
{
public static void Main()
Console.WriteLine("Hello World");
/*
Question: Find highest number that can be generated by shuffling the digits of array values.
e.g In the given array, your answer shoud be 9983 that is generated from array value at index 2 that is 3989.
*/
int[] arr = {-452,794,3989,2784,5032,2099};
}