#include using namespace std; int main(){ int N, M; cin >> N; float total = 1.5 * N; M = N*1.5; cout << M << endl; return 0; }