본문 바로가기
알고리즘/백준 알고리즘 풀이

[알고리즘] 백준 알고리즘 - 1001번 (A-B) 풀이

by 코딩 시그널 2020. 11. 26.
반응형

 

 

문제 풀이
import java.util.Scanner;

public class algo1001 {
	public static void main(String args[]) {
		Scanner sc = new Scanner(System.in);
		int num1 = sc.nextInt();
		int num2 = sc.nextInt();
		System.out.println(num1-num2);
	}
	
}

댓글