#include <iostream>
#define llint long long

using namespace std;

int main(void)
{
	llint n;
	cin >> n;
	cout << n*3/2 << endl;
	return 0;
}