#include using namespace std; int main() { double N; cin >> N; N *= 1.5; int M = int(N / 1.); cout << M << endl; return 0; }