aboutsummaryrefslogtreecommitdiff
path: root/problems/pixelpolygons/attachments/template.js
blob: 6dde043abd0429d2ca13f8119d9f39cbd59ef910 (plain)
1
2
3
4
5
6
7
8
9
10
const N = parseInt(readline());
for (let i = 0; i < N; i++) {
    const line = readline();
}

// Write an answer using console.log()
// To debug: console.error('Debug messages...');

console.log('number_of_sides');