using System; using System.Collections.Generic; using System.Linq; namespace Test { class Program { static void Main(string[] args) { int n = int.Parse(Console.ReadLine()); int[] x = Console.ReadLine().Split().Select(int.Parse).ToArray(); int ret = 0; for (int i = 0; i < n; i++) { bool flag = true; for (int j = 0; j < n && flag; j++) { if (i == j) continue; if (x[i] == x[j]) flag = false; } if (flag) ret++; } Console.WriteLine(ret); } } }