#include using namespace std; int main() { int n; double m; cin >> n >> m; m = 1.5 * n; cout << m << endl; }