let a:[Int] = readLine()!.split(separator: " ").map{Int($0)!} var step:Int = 0 while true { if(a[0] * step >= a[1]) { break } step += 1 } print(step)