package main

import (
	"bufio"
	"fmt"
	"os"
	"strconv"
	"strings"
)

func main() {
	sc := bufio.NewScanner(os.Stdin)

	sc.Scan()
	v := strings.Fields(sc.Text())
	s1, _ := strconv.Atoi(v[0])
	s2, _ := strconv.Atoi(v[1])
	step := 1

	for n := s1; n < s2; n += s1 {
		step += 1
	}

	fmt.Println(step)
}