import java.util.Scanner;

class no388{
    public static void main(String args[]){
        Scanner sc = new Scanner(System.in);
        int S = sc.nextInt();
        int F = sc.nextInt();
        int kai = 1;
        
        if( S >= F ){
            kai = S / F;
        }
        
       System.out.println(kai);
    }
}