// yukicoder No.835 #include using namespace std; int main() { int n; cin >> n; int ans = 1.5 * n; cout << ans << "\n"; return 0; }