Alice, Bob, and Carol visit a spring to collect water. Alice visits every $$$a$$$ days (on days $$$a, 2a, 3a, \dots$$$), Bob visits every $$$b$$$ days (on days $$$b, 2b, 3b, \dots$$$), and Carol visits every $$$c$$$ days (on days $$$c, 2c, 3c, \dots$$$).
When only one person visits, they collect $$$6$$$ liters of water. If multiple people visit, the water is divided equally: two people take $$$3$$$ liters each, and three people take $$$2$$$ liters each.
Your task is to calculate how much water Alice, Bob, and Carol collect over $$$m$$$ days, starting from day $$$1$$$.
The first line contains a single integer $$$t$$$ ($$$1 \le t \le 10^4$$$) — the number of test cases.
The only line of each test case contains four integers $$$a$$$, $$$b$$$, $$$c$$$, and $$$m$$$ ($$$1 \le a, b, c \le 10^6$$$; $$$1 \le m \le 10^{17}$$$).
For each test case, print three integers — the number of liters of water that Alice, Bob, and Carol collect over $$$m$$$ days.
42 1 3 101 1 8 56 20 15 1000650650 1092 157437 100000000000000000
14 38 815 15 0881 236 281845294870595 549337065358857 3774389867286
Consider the first example: