#include using namespace std; int main(){ long long n; cin >> n; cout << n/2 * 3 + (n % 2 == 1 ? 1 : 0) << endl; return 0; }