blob: 2c704f2c9328e8f65c65b6c6745b1eda6cc40000 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import sys
import math
n = int(input())
for i in range(n):
analysis = input()
# Write an answer using print
# To debug: print("Debug messages...", file=sys.stderr, flush=True)
print("one line per boat with its position or one line per analysis causing an error")
|