#include <iostream>
using namespace std;
int main() {
int n;
cin >> n;
int a = (n+2)/3;
cout << a << endl;
}
先把輸出的數字+2在/3
就是答案了