import java.io.*; import java.util.*; import java.util.function.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); Map x = getMap(sc.nextLong()); long a = sc.nextLong(); Map y = getMap(sc.nextLong()); long b = sc.nextLong(); for (long n : y.keySet()) { if (y.get(n) * b > x.getOrDefault(n, 0) * a) { System.out.println("No"); return; } } System.out.println("Yes"); } static Map getMap(long x) { Map ans = new HashMap<>(); for (long i = 2; i <= Math.sqrt(x); i++) { while (x % i == 0) { ans.put(i, ans.getOrDefault(i, 0) + 1); x /= i; } } if (x > 1) { ans.put(x, ans.getOrDefault(x, 0) + 1); } return ans; } } class Scanner { BufferedReader br; StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() { try { br = new BufferedReader(new InputStreamReader(System.in)); } catch (Exception e) { } } public int nextInt() { return Integer.parseInt(next()); } public long nextLong() { return Long.parseLong(next()); } public double nextDouble() { return Double.parseDouble(next()); } public String next() { try { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } } catch (Exception e) { e.printStackTrace(); } finally { return st.nextToken(); } } }