d = int(input()) a, b = map(int, input().split()) ans = d * b * (1 + (a - b) / (a + b)) print(int(ans))