매일코테

백준 1단계 no.7

공주맛밤 2022. 7. 18. 18:41

import java.util.*;

public class Main{
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        
        int a = scanner.nextInt();
        int b = scanner.nextInt();
        
        System.out.println(a-b);
    }
}
728x90
반응형