#include <iostream>
using namespace std;
int main(void)
{
unsigned long long int n;
while (cin >> n)
cout << (n % 3) + (n / 3) << endl;
}
return 0;
(n % 3) + (n / 3)
這個是怎麼來的?
如果你是看這個解題報告(https://zerojudge.tw/ShowThread?postid=24719&reply=0)的話,你少寫>0了