import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); long n = sc.nextInt(); long sample = sc.nextInt(); long sum = 0; for (long i = 0; i < n; i++) { sum += sc.nextInt(); } double avg = (double)sum / n; if (avg == sample) { System.out.println("YES"); } else { System.out.println("NO"); } sc.close(); } }