n,h = map(int,input().split()) A = list(map(int,input().split())) ans = 1 for a in A: ans *= a ans %= h print("NO" if ans else "YES")