import math n = int(input()) a, b, c = map(int, input().split()) A = n // a B = n // b C = n // c AB = n // math.lcm(a, b) BC = n // math.lcm(b, c) CA = n // math.lcm(c, a) ABC= n // math.lcm(a, b, c) print((A+B+C) - (AB+BC+CA) + ABC)