function main(input){ const a = Number(input.split(' ')[0]) const b = Number(input.split(' ')[1]) let ans = Math.ceil(b / a); console.log(ans) }