import math N = int(input()) A, B, C = map(int, input().split()) print( N // A + N // B + N // C - N // math.lcm(A, B) - N // math.lcm(B, C) - N // math.lcm(C, A) + N // math.lcm(A, B, C) )