package main import "fmt" import "math" func main() { var a, b float64 fmt.Scanf("%v %v", &a, &b) fmt.Println(math.Ceil(b / a)) }