#include<iostream>

using namespace std;

int N;
int main () {
    cin >> N;
    cout << N + N/2 << endl;
    return 0;
}