#include int main(void){ long int a,b; scanf("%ld",&a); scanf("%ld",&b); if(b % a == 0)printf("%ld\n",b / a); else printf("%ld\n",b / a + 1); }