#include int main() { int a,b,n;//(1<=a,b<=10^9) scanf("%d %d",&a,&b); n = b / a; if(b%a){ n++; } printf("%d",n); return 0; }