Hueestory

[1000] A+B (C++) 본문

PS(중단)/BOJ

[1000] A+B (C++)

히명 2024. 4. 25. 10:01
#include <iostream>
#include <algorithm>

using namespace std;

int main()
{
	ios::sync_with_stdio(false);
	cin.tie(NULL);
	cout.tie(NULL);

	int A; cin >> A;
	int B; cin >> B;

	cout << A + B << endl;

	return 0;	
}

 

 

'PS(중단) > BOJ' 카테고리의 다른 글

[1008] A/B (C++)  (0) 2024.04.25
[1001] A-B (C++)  (0) 2024.04.25
[11004] K번째 수 (C++) / 2가지 풀이  (0) 2024.04.25
[1157] 단어 공부 (C++)  (0) 2024.04.24
[11399] ATM (C++)  (0) 2024.04.24
Comments