#include <iostream>
using namespace std;
int main()
{
int n; // 瓶盖的数量
cin >> n;
int res = n; // 瓶子的数量
while (n >= 3)
{
int t = n / 3; // 每次迭代增加的瓶子数量
res += t;
n = n % 3; // 多余的瓶盖数量
n += t;
}
cout << res << endl;
return 0;
}