[백준 1000번 문제, JAVA] A+B


[백준 1000번 문제, JAVA] A+B

문제 코드 import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws IOException { BufferedReader reader = new BufferedReader(new InputStreamReader(System.in)); String[] input = reader.readLine().split(" "); System.out.println(Integer.parseInt(input[0]) + Integer.parseInt(input[1])); } } 해결 입력 받고 더하면 ..


원문링크 : [백준 1000번 문제, JAVA] A+B