#include using namespace std; #define FOR(i,s,t) for(int i = s; i < t; i++) using LL = long long; int main() { LL N; cin >> N; LL ans = (3 * N) / 2; cout << ans << endl; }