import * as fs from 'fs'; const input = fs.readFileSync(0, 'utf8'); const [a, b] = input.trim().split(' ').map(Number); console.log(Math.floor((b + a - 1) / a));