#45784: 派森


chen971023@gmail.com (ZiaynGZiyaNG)

學校 : 國立臺南第二高級中學
編號 : 291750
來源 : [122.121.172.45]
最後登入時間 :
2025-10-01 23:36:53

n = int(input())

 

for i in range(n):

m = []

a, b, c = map(int, input().split())

for j in range (1, 501):

if (a < j and j < b and j % c != 0):

m.append(f"{j}")

 

if not (m):

print("No free parking spaces.")

else:

print(*m)