#include<iostream>using namespace std;int main(){int a,b;cin>>a>>b; if(b%a==0)//整除情況 { cout<<b/a; } if(b%a!=0)//非整除情況需+1 { cout<<b/a+1; }}