n=int(input())
for i in range(n):
a,b,c,d=map(int,input().split())
if b-a==c-b==d-c:
e=d+(d-c)
else:
e=d*(d//c)
print(a,b,c,d,e)