use std::io::*; fn main() { let mut s = String::new(); std::io::stdin().read_to_string(&mut s).ok(); let mut itr = s.trim().split_whitespace(); let _n: i64 = itr.next().unwrap().parse().unwrap(); let h: i64 = itr.next().unwrap().parse().unwrap(); let a: Vec = itr.map(|x| x.parse().unwrap()).collect(); let mut p = 1; let mut ans = "NO".to_string(); for x in a { p *= x; p %= h; if p == 0 { ans = "YES".to_string(); break; } } println!("{}", ans); }