#include #include #include using namespace std; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); int N, x, y, z_l, z_r, z_c; cin >> N; vector> ans; for (x = 0; x <= N; ++x) for (y = 0; y <= N && x * y <= N; ++y) if ((x != 0 || y != 0) && (N - x * y) % (x + y) == 0) ans.emplace_back(x, y, (N - x * y) / (x + y)); cout << ans.size() << '\n'; for (x = 0; x != ans.size(); ++x) cout << get<0>(ans[x]) << ' ' << get<1>(ans[x]) << ' ' << get<2>(ans[x]) << '\n'; return 0; }