[백준 JAVA] 11021번 풀이 - A+B-7
mini_min
package baekjoon; import java.io.IOException; import java.util.Scanner; /** * A+B - 7 */ public class _11021 { public static void main(String[] args) throws NumberFormatException, IOException { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int a = 0; int b = 0; for(int i = 1; i