#include <stdio.h>int main(){ int m,n; while(scanf("%d%d",&m,&n)!=EOF) { int num; num=m/n; printf("%d ",num); } return 0; }