#include #include #include using namespace std; int main(){ int n,k;cin>>n>>k; for(int i = 0; n > i; i++){ int t;cin>>t; k = k/gcd(t,k); } if(k==1){ cout << "YES" << endl; }else{ cout << "NO" << endl; } }