#include <iostream>using namespace std;int main(){int A;cin>>A;int B=0;for(int i=3;A>0;A-=i){B++;}cout<<B;}
每三人分到一組 所以三個減一次 減到前A個人都分到組之後 輸出共分了幾次