import numpy as np T, A, B = map(int, input().split()) T -= 1 print(T // A + T // B - T // np.lcm(A, B) + 1)