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

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

console.log('partitions');