#include using namespace std; int main() { int a, b, answer = 0; cin>>a>>b; while(b>0) { b = b - a; answer++; } cout<