#include using namespace std; int main() { int N, M; cin >> N; M = N * 3 / 2; cout << M << endl; }