aboutsummaryrefslogtreecommitdiff
path: root/problems/budgettraveler/attachments/template.js
blob: 3ad3bac00b6c6f49e47a702962132d1f8a0476ab (plain)
1
2
3
4
5
6
7
8
9
10
11
const n = parseInt(readline());
for (let i = 0; i < n; i++) {
    var inputs = readline().split(' ');
    const x = parseInt(inputs[0]);
    const y = parseInt(inputs[1]);
}

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

console.log('answer');