package main import ( "fmt" ) func main() { var a, b int fmt.Scan(&a, &b) rem := b%a if rem == 0 { fmt.Println(b/a) } else { fmt.Println(b/a+1) } }