#arc080a. [arc080_a]4-adjacent
[arc080_a]4-adjacent
Problem Statement
We have a sequence of length , . Each is a positive integer.
Snuke's objective is to permute the element in so that the following condition is satisfied:
- For each , the product of and is a multiple of .
Determine whether Snuke can achieve his objective.
Constraints
- is an integer.
Input
Input is given from Standard Input in the following format:
Output
If Snuke can achieve his objective, print Yes
; otherwise, print No
.
Sample Input 1
3
1 10 100
Sample Output 1
Yes
One solution is .
Sample Input 2
4
1 2 3 4
Sample Output 2
No
It is impossible to permute so that the condition is satisfied.
Sample Input 3
3
1 4 1
Sample Output 3
Yes
The condition is already satisfied initially.
Sample Input 4
2
1 1
Sample Output 4
No
Sample Input 5
6
2 7 1 8 2 8
Sample Output 5
Yes