본문 바로가기
Portpolio/algorithm

백준 2558 c++ 풀이

by Peter Choi 2024. 7. 12.
반응형
#include <iostream>

using namespace std;

int main(void)
{
	int a, b;
	cin >> a;
    cin >> b;

	cout << a + b;
}

https://boj.kr/2558

 

반응형

'Portpolio > algorithm' 카테고리의 다른 글

백준 10952 c++ 풀이  (0) 2024.07.13
백준 10951 c++ 풀이  (0) 2024.07.12
백준 1001 c++ 풀이  (0) 2024.07.12
백준 1000 c++ 풀이  (0) 2024.07.12
백준 10950 C++ 풀이  (0) 2024.07.12

댓글