Solution to the problem number 1061A of Codeforces - 1061A.

Any questions do not hesitate to contact.

#include <bits/stdc++.h>
using namespace std;

int main()
{
    int n,S; scanf("%d%d",&n,&S);
    if(S%n==0) printf("%d",S/n);
    else printf("%d",S/n+1);
    return 0;
}

Don't miss anything.

Keep in touch with Isaac Lozano Osorio!