#295. 能否整除?

能否整除?

No testdata at current.

Background

给你nn个整数, 判断其中是否存在两个数的差能被mm整除

Input

第1行为n,mn, m

第2行为nn个正整数

Output

如果存在输出yes, 否则输出no.

Samples

5 6
1 2 7 13 5
yes

Limitation

1<=n,m<=1061 <= n, m <= 10^6