aboutsummaryrefslogtreecommitdiff
path: root/problems/findasafeplace/attachments/template.py
diff options
context:
space:
mode:
Diffstat (limited to 'problems/findasafeplace/attachments/template.py')
-rw-r--r--problems/findasafeplace/attachments/template.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/problems/findasafeplace/attachments/template.py b/problems/findasafeplace/attachments/template.py
new file mode 100644
index 0000000..6ac6923
--- /dev/null
+++ b/problems/findasafeplace/attachments/template.py
@@ -0,0 +1,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)")