#include <bits/stdc++.h>
using namespace std;

int main() {
    int n;
    cin >> n;
    int integer = n *1.5;
    cout << integer << endl; 
}