from math import gcd t, a, b = map(int, input().split()) t -= 1 l = a * b // gcd(a, b) print(1 + t // a + t // b - t // l)