#include using namespace std; int main() { int n; cin >> n; cout << setprecision(20) << floor(1.5 * n) << endl; return 0; }