n=int(input());m=float('inf') a=sorted(list(map(int,input().split()))) for i in range(n-1): m=min(m,a[i+1]-a[i]) print(m,a[-1]-a[0],sep='\n')