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