let ab = readLine()!.split(separator: " ").map{Int($0)!} let (a,b) = (ab[0],ab[1]) let ans = (b+a-1)/a print(ans)