#include #include using namespace std; int main() { int n; cin >> n; double total = n * 1.5; cout << floor(total) << '\n'; }