#include int main(){ long a,b; scanf("%ld %ld",&a,&b); printf("%ld\n",b/a+((b%a>0)?1:0)); return 0; }