끄적끄적 코딩
article thumbnail
Published 2019. 11. 12. 23:21
[C++] 백준 14918번 더하기 알고리즘

a와 b를 입력받고 a + b의 결과를 출력합니다.

 

#include <iostream>
using namespace std;

int main(int argc, char* argv[])
{
	int a, b;

	cin >> a >> b;

	cout << a + b << endl;

	return 0;
}

검색 태그