N = int(input()) # N以下の3の倍数の数 *2 + N以下の5の倍数の数 *2 ans = 0 ans += (N // 3) * 2 ans += (N // 5) * 2 print(ans)