Notice
Recent Posts
Recent Comments
Link
반응형
변명은 만개 결과는 한개
[백준 2558] A+B - 2 본문
728x90
반응형
https://www.acmicpc.net/problem/2558
< 내 코드 >
#include <iostream>
using namespace std;
int main() {
int a, b;
cin >> a >> b;
cout << a + b;
return 0;
}
< 코멘트 >
-_-..?
728x90
반응형