#define LOCAL #include using namespace std; using ll = long long; const int mod = 1e9 + 7; #define mem(a, b) memset(a, b, sizeof(a)) #define REP(i, a) for (int i = 0; i < a; ++i) #define FOR(i, a, b) for (int i = a; i < b; ++i) #define ALL(a) a.begin(), a.end() inline void quickread() { ios::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr); cout << fixed << setprecision(10); } inline void print_vector(vector &A){ for (auto&& x : A){ cout << x << " "; } cout << endl; } inline void print_vector(vector &A){ for (auto&& x : A){ cout << x << " "; } cout << endl; } inline void print_array(const int A[], int n) { REP(i, n) { if (i < n - 1) { cout << A[i] << " "; } else { cout << A[i] << endl; } } } #ifdef LOCAL #define trace(...) __f(#__VA_ARGS__, __VA_ARGS__) #else #define trace(...) 42 #endif template void __f(const char* name, Arg1&& arg1){ cerr << name << ": " << arg1 << endl; } template void __f(const char* names, Arg1&& arg1, Args&&... args){ const char* comma = strchr(names + 1, ','); cerr.write(names, comma - names) << ": " << arg1 << " |"; __f(comma + 1, args...); } inline void solve() { ll n, s; cin >> n >> s; vector res; ll cur = n; while (true) { if (s > cur) { res.push_back(cur); s -= cur; cur--; } else { res.push_back(s); break; } } sort(ALL(res)); cout << (int)res.size() << endl; print_vector(res); } int main() { quickread(); int t = 1; // cin >> t; for (int _ = 0; _ < t; _++) { solve(); } return 0; }