using System; using System.Text; using System.Linq; namespace ConsoleApp11 { class Program { static void Main(string[] args) { long N = long.Parse(Console.ReadLine()); long count = 0; long[] A = new long[N]; bool tof = true; var input = Console.ReadLine().Split(' '); for(long i = 0; i < N; i++) { A[i] = long.Parse(input[i]); } for(int i = 0; i < N - 1; i++) { tof = true; for(int j = i + 1; j < N; j++) { if(A[i] == A[j]) { A[j] = 0; tof = false; } if(j == N - 1 && tof == true && A[i] != 0) { count++; } } } Console.WriteLine(count); } } }