import java.util.ArrayList; import java.util.Scanner; import java.util.Collections; public class No236 { public static void main(String[] args) { // 標準入力から読み込む際に、Scannerオブジェクトを使う。 Scanner s = new Scanner(System.in); int a = s.nextInt(); int b = s.nextInt(); int x = s.nextInt(); int y = s.nextInt(); double tempx = (a * y) / b; double tempy = (b * x) / a; if(x >= y && tempy <= y) { System.out.println(x + tempy); }else { System.out.println(tempx + y); } } }