[백준 알고리즘] 1001번 (Java, Python3)
언어, 알고리즘 공부/백준2018. 9. 12. 00:54[백준 알고리즘] 1001번 (Java, Python3)

123456789101112import 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); }}Colored by Color Scriptercs 12a,b=input().split()print(int(a)-int(b))cs

image