import java.util.Scanner; public class No46 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); long a, b; a = sc.nextLong(); b = sc.nextLong(); System.out.println(b/a); } }