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

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

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

print("number_of_sides")