본문 바로가기
알고리즘 & 자료구조/백준

백준 2558

by 신재권 2021. 8. 4.
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;


public class Main2558 {

	public static void main(String[] args) throws IOException {
		BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));
		int A = Integer.parseInt(bf.readLine());
		int B = Integer.parseInt(bf.readLine());
		
		System.out.println(A+B);
		
	
	}

}

'알고리즘 & 자료구조 > 백준' 카테고리의 다른 글

백준 9012  (0) 2021.08.05
백준 9093  (0) 2021.08.05
백준 10953  (0) 2021.08.04
백준 10828  (0) 2021.08.04
백준 2839  (0) 2021.08.03