/** @file 835.cpp @title No.835 ジュース - yukicoder using namespace std; typedef long long LL; #define ALL(obj) (obj).begin(), (obj).end() #define REP(i, N) for (int i = 0; i < (N); ++i) int main() { int N; cin >> N; cout << (int)((1.5*N)/1) << endl; return 0; }