#include <bits/stdc++.h>
using namespace std;
 
int main() {
    long N,M;
    cin >> N;
    M = N*3/2;
    
    cout << M << endl;
    return 0;
}