T, N, M = map(int, input().split()) for week in range(1, T + 1): L_list = [(M // 500) // 9 for _ in range(N - 1)] L_list.append(0) print(1, end = " ", flush = True) print(*L_list, flush = True) M = int(input()) S = list(map(int, input().split())) # 各店舗のその週の売り上げ冊 P = list(map(int, input().split())) # 各店舗のその時点での人気度 R = list(map(int, input().split())) # 各店舗での在庫冊数