a, b, n, m = map(int, input().split()) if a > b: print(b + (a - b) // (n + 1)) else: print(a + (b - a) // (m + 1))