#include using namespace std; int main(void){ // Your code here! int a,b; cin >> a >> b; int i=0; while(true){ ++i; if(a*i>=b) break; } cout << i <