from math import gcd n=int(input()) a,b,c=map(int,input().split()) print(n//a+n//b+n//c-n//gcd(a,b)-n//gcd(a,c)-n//gcd(b,c)+n//gcd(a,b,c))