let inpt = readLine()!.split(separator:" ").map{Int($0)!} var ans = inpt[1]/inpt[0] if(inpt[1]%inpt[0]>0) { ans+=1 } print(ans)