Recent Posts
Notice
No Rules Rules
A+B (feat. 백준, 1000번) 본문
728x90
반응형
A+B
https://www.acmicpc.net/problem/1000
반응형
// 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