No Rules Rules

A+B (feat. 백준, 1000번) 본문

생활/코테

A+B (feat. 백준, 1000번)

개발하는 완두콩 2022. 8. 9. 11:46
728x90
반응형

A+B
https://www.acmicpc.net/problem/1000

 

1000번: A+B

두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.

www.acmicpc.net

 

반응형

 

// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
using namespace std;
int main() {
	ios::sync_with_stdio(false), cin.tie(NULL);
	register int A, B;
	cin >> A >> B;
	cout << A + B;
	return 0;
}
// *&)*@*

 

728x90
반응형

'생활 > 코테' 카테고리의 다른 글

A×B (feat. 백준, 10998번)  (0) 2022.08.09
A-B (feat. 백준, 1001번)  (0) 2022.08.09
두 수 비교하기 (feat. 백준, 1330번)  (0) 2022.08.08
잃어버린 괄호 (feat. 백준, 1541번)  (0) 2022.08.08
ATM (feat. 백준, 11399번)  (0) 2022.08.08
Comments