const fs = require('fs')
const [a,b] = fs.readFileSync('/dev/stdin').toString().trim().split(" ")
const sum = (str1, str2) => {
return `${BigInt(str1) + BigInt(str2)}`
// return ( BigInt(str1) + BigInt(str2) ).toString()
}
console.log( sum(a, b) )
2^53 - 1
보다 큰 정수를 그냥 Number로 계산하면 뒷자리가 0들로 표시된다
BigInt로 변환해서 더하고 다시 string으로 변환하면 n이 사라진다