include <stdio.h>

int main ()
{
int a,b;
scanf("%d %d",&a,&b);
printf("%d",(a/b));
}
加括号才可以正常输出a/b的值