#include using namespace std; int main(void) { int n; cin >> n; double f = n * 1.5; cout << (int)f << endl; return 0; }