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