#include using namespace std; int main() { ios::sync_with_stdio(0); cin.tie(nullptr); cout.tie(nullptr); int N,K; cin >> N >> K; double n = 1.0*N/K; double n_check = (int)(N/K); if(n!=n_check) { cout << -1 << endl; return 0; } if(N==1&&K!=1) { cout << -1 << endl; return 0; } for(int i=1;i<=N;i++) { if(i<=n) { cout << 1 << " "; }else { cout << 2 << " "; } } return 0; }