#include using namespace std; using ll=long long; using pii=pair; #define all(a) a.begin(),a.end() #define pb push_back #define sz(a) ((int)a.size()) signed main(){ ios_base::sync_with_stdio(0),cin.tie(0); int n; cin >> n; set> st; for(int i=0; i<=n; ++i) for(int j=i; 1ll*j*j<=n; ++j) if(i+j>0&&(n-i*j)%(i+j)==0){ int k=(n-i*j)/(i+j); if(k>=j){ st.insert({i,j,k}); st.insert({i,k,j}); st.insert({j,i,k}); st.insert({j,k,i}); st.insert({k,i,j}); st.insert({k,j,i}); } } cout << sz(st) << "\n"; for(auto [i,j,k]: st) cout << i << ' ' << j << ' ' << k << "\n"; }