#include <bits/stdc++.h>
using namespace std;
using LL = long long;

int main() {
    
    // 1. 入力情報取得.
    LL N;
    cin >> N;
    
    // 2. ジュースをN本購入.
    LL M = N * 1.5;
    
    // 3. 後処理.
    cout << M << endl;
    return 0;
    
}