#include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int N; long S; cin>>N>>S; vectorans; for(int n=N;n>=1;n--) { if(S>=n) { ans.push_back(n); S-=n; } } if(S>0) { cout<<"-1"<