#include int main(){ int a,b; scanf("%d", &a);//歩幅 scanf("%d", &b);//到達したい距離 printf("%d¥n", b/a); //求めたい歩数 return 0; }