Created
December 10, 2025 15:18
-
-
Save AspirantDrago/5b7c50828d95dfd65e100582048376ef to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| for _ in range(int(input())): | |
| n = int(input()) | |
| print(0, 0, n, flush=True) | |
| while True: | |
| x, y, r = map(int, input().split()) | |
| if (x, y, r) == (0, 0, 0): | |
| break | |
| print(-x, -y, r, flush=True) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment