function Main(input) { // inputにはすべての入力の文字列が与えられるので必要に応じて input.split("\n") などで分割する。 let data = input.split("\n"); let first_line = data[0].split(" "); let a: bigint = BigInt(first_line[0]); let b: bigint = BigInt(first_line[1]); for (let i: bigint = BigInt(0); true; i++) { if (a * BigInt(i) >= b) { console.log(i); break; } } } // Don't edit this line! Main(require("fs").readFileSync("/dev/stdin", "utf8"));