H = gets.split[1].to_i R = gets.split.map(&:to_i) # 一つでも直接的に倍数が含まれていればそこで打ち切り puts R.any?{|x| x % H == 0} || R.reduce(&:*) % H == 0 ? "YES" : "NO"