Baekjoon Online Judge 1001번 문제 풀이입니다.
문제가 간단할 경우 별도 해설을 붙이지 않습니다.
import java.util.Scanner;
public class Main {
	public static void main(String[] args){
		
		Scanner sc = new Scanner(System.in);
		
		int a = sc.nextInt();
		int b = sc.nextInt();
		
		System.out.println(a-b);
		
	}
	
}