코테/백준
백준 1001 JAVA
Slow Motion~
2022. 12. 21. 14:49
728x90
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
int a,b;
Scanner sc = new Scanner(System.in);
a = sc.nextInt();
b = sc.nextInt();
System.out.println(a-b);
sc.close();
}
}