/* No.835 ジュース https://yukicoder.me/problems/no/835 */ #include using namespace std; int main() { ios::sync_with_stdio(0); cin.tie(0); long int n; cin >> n; cout << (int)(1.5 * n) << endl; }