#include #include #include using namespace std; int main() { std::ios::sync_with_stdio(false); std::cin.tie(0); long long n; cin >> n; cout << (n / 3) * 2 + (n / 5) * 2 << endl; return 0; }