using System;
/*
Given an array of consecutive integers with one or more missing elements, identify all the missing numbers.
Example:
Input: [1, 2, 4, 5, 6, 9]
Output: [3, 7, 8]
*/
public class Program
{
public static void Main()
Console.WriteLine("Hello World");
}