using System;
public class Program
{
public static void Main()
// Find the longest sequence that increase then decrease
// E.g 4 19 20 39 0 45 21 12 33 44 11 8 1 99 12
// Expected output: 12 33 44 11 8 1
Console.WriteLine("Hello World");
}