import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt();
		int b = sc.nextInt();
		sc.close();

		for (int i = 1; i <= a; i++) {
			if (a % i == 0 && i % b == 0) {
				System.out.println("YES");
				return;
			}
		}
		System.out.println("NO");
	}
}