#yuki1032 import collections n,m=map(int,input().split()) c=collections.Counter(map(int,input().split())) for i in range(1,m+1): print(i,c[i])