import java.util.*;
import java.io.*;
public class Main {
public static void main(String[] args) throws IOException {
Scanner sc = new Scanner(System.in);
long A = sc.nextLong();
long B = sc.nextLong();
long ans = (A + B) * (A - B);
System.out.println(ans);
}
}
'Playground > 자바문제집' 카테고리의 다른 글
[백준] 1271번 (0) | 2023.01.22 |
---|---|
[백준] 2475번 (0) | 2023.01.22 |
[백준] 9086번 (0) | 2023.01.22 |
[백준] 11718번 (0) | 2023.01.22 |
[백준] 10809번 (0) | 2023.01.22 |