#include <bits/stdc++.h>
using namespace std;
typedef long long ll;

int main(){
	ll N,M;
	cin >> N;
	M = 3*N/2;
	cout << M << endl;
}