/*
Given an array of size n, we can remove the duplicates from the array.
Example 1
Input array: [1, 2, 1, 2, 1, 3, 2]
Output : [1, 2, 3]
Example 2
Input array: [10, 24, 5, 10, 24]
Output : [10, 24, 5]
*/
using System;
public class Program
{
public static void Main()
Console.WriteLine("Hello World");
}