n, k = list(map(int, input().split())) s = list(map(int, input().split())) for i in range(n-1): if s[i] != s[i+1]: count += 1 print(count)