using System; using System.Linq; class Program { static void Main() { int n = int.Parse(Console.ReadLine()); var a = Console.ReadLine().Split().Select(int.Parse).ToList(); a.Sort(); int ans = 0; for (int i = 0; i < n; i++) { ans++; if (i == n - 1) break; if (a[i] == a[i + 1]) { ans--; do { i++; if (i == n - 1) break; } while (a[i] == a[i + 1]); } } Console.WriteLine(ans); } }