#include <stdio.h> #include <iostream> using namespace std; int main() { int N; cin >> N; cout << (int)(1.5 * N) << endl; return 0; }