#include<stdio.h>
float main(){
    float a,b,c;
    scanf("%f%f",&a,&b);
    c=a/b;
    printf("%d",c);
}