1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#!/usr/local/bin/node // // See ../README.md // // // Run as: node ch-1.js < input-file // require ('readline') . createInterface ({input: process . stdin}) . on ('line', line => { [m, n] = line . split (" ") . map (_ => +_) console . log (m ^ (1 << -- n)) })