Algorithm&DataStructures/StepByStep [Algorithm] 백준알고리즘_A-B 리딩리드 2016. 8. 18. 19:31 A-B 1) You enter two values 2) Show me result of minus import java.util.Scanner; public class Minus { public static void main(String[]args){ Scanner sc = new Scanner(System.in); int a,b ; a = sc.nextInt(); b = sc.nextInt(); System.out.println(a-b); } } https://github.com/KyleJeong/Algorithm