[입력]
첫째 줄에 두 도메인의 유명도 N과 M이 주어진다. (-2,000,000,000 ≤ N, M ≤ 2,000,000,000)
[출력]
첫째 줄에 두 유명도의 차이 (|N-M|)을 출력한다.
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
long N = sc.nextLong();
long M = sc.nextLong();
System.out.println(Math.abs(N-M));
}
}
Math.abs()
: 절대값 구하는 함수