aboutsummaryrefslogtreecommitdiff
path: root/problems/findasafeplace/attachments/template.py
blob: 6ac69230b7155af1cedcfde9212e6fa4e12eec8d (plain)
1
2
3
4
5
6
7
8
9
10
11
import sys
import math

n = int(input())
for i in range(n):
    row = input()

# Write an answer using print
# To debug: print("Debug messages...", file=sys.stderr, flush=True)

print("(x,y)")