알고리즘/백준
[백준] 1001 A-B (Java)
hoony_
2019. 11. 26. 15:47
반응형
1
2
3
4
5
6
7
8
|
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println(sc.nextInt()-sc.nextInt());
}
}
Colored by Color Scripter
|
반응형