function main(input) { const N = input.trim(); console.log(N === '0' ? '0' : N + '0'); } main(require('fs').readFileSync('/dev/stdin', 'utf8'));