ilosc = int(input()) arr = list(map(int, input().split())) arr = sorted(set(arr)) if len(arr) == ilosc: print(len(arr)) else: print(len(arr) - 1)
1 2 3 4 5 6 7 8 | ilosc = int(input()) arr = list(map(int, input().split())) arr = sorted(set(arr)) if len(arr) == ilosc: print(len(arr)) else: print(len(arr) - 1) |