import java.util.*;
import java.io.*;
import java.math.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int N, S;
while (sc.hasNext()) {
N = sc.nextInt();
S = sc.nextInt();
System.out.println(S / (N + 1));
}
}
}
'Playground > 자바문제집' 카테고리의 다른 글
[백준] 4999번 (0) | 2023.01.24 |
---|---|
[백준] 4101번 (0) | 2023.01.24 |
[백준] 2338번 (0) | 2023.01.24 |
[백준] 5622번 (0) | 2023.01.24 |
[백준] 1065번 (0) | 2023.01.23 |