import math n = int(input()) d15 = math.floor(n/15) d3 = math.floor(n/3) - d15 d5 = math.floor(n/5) - d15 ans = (d3 + d5) * 2 + d15 * 4 print(ans)