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

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

console.log('(x,y)');