A-B (1001)

유지원·2021년 6월 14일
0

백준OJ

목록 보기
6/32
post-thumbnail

Java 11

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner scn = new Scanner(System.in);
        int a = scn.nextInt();
        int b = scn.nextInt();

        System.out.print(a-b);

    }
}
profile
👋 https://github.com/ujw0712

0개의 댓글