Beakjoon&프로그래머스/Java
[백준/Java] 24309번 РАВЕНСТВО
현장
2022. 4. 15. 20:48
-Code
import java.math.BigInteger;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
BigInteger a = sc.nextBigInteger();
BigInteger b = sc.nextBigInteger();
BigInteger c = sc.nextBigInteger();
System.out.println(b.subtract(c).divide(a));
}
}