import strutils, sequtils let t = stdin.readLine.split.map parseFloat AB = (t[0], t[1]) # 鴛鴦茶を作るためのコーヒーと紅茶の割合 X = t[2] # コーヒーの量 Y = t[3] # 紅茶の量 y = X / AB[0] * AB[1] x = Y / AB[1] * AB[0] echo min(X + y, x + Y)