#include int main(int a,int b) { int num=b; int answer=0; while(num>a){ num-=a; answer++; } std::cout << answer << std::endl; return 0; }