/*
 * This template is valid both in C and in C++,
 * so you can expand it with code from both languages.
 * NOTE: it is recommended to use this even if you don't
 * understand the following code.
 */

#include <stdio.h>
#include <assert.h>

// constraints
#define MAXN 200

// input data
int N, L, i;
int X[MAXN];
int E[MAXN];

int main() {
//  uncomment the following lines if you want to read/write from files
//  freopen("input.txt", "r", stdin);
//  freopen("output.txt", "w", stdout);

    assert(2 == scanf("%d %d", &N, &L));
    for (i=0; i<N; i++)
        assert(1 == scanf("%d", &X[i]));
    for (i=0; i<N; i++)
        assert(1 == scanf("%d", &E[i]));

    // insert your code here
    
    for (i=0; i<L; i++)
        printf("%d ", 4); // print the result
    printf("\n");
    return 0;
}
