#include int main() { int a,b,c; scanf("%d",&a); scanf("%d",&b); c=b/a; if(c=0){ printf("%d",c); }else{ printf("%d",c+1); } return 0; }