프로그래머스 181947 덧셈식 출력하기

1 개요[ | ]

프로그래머스 181947 덧셈식 출력하기

2 C++[ | ]

#include <iostream>

using namespace std;

int main(void) {
    int a;
    int b;
    cin >> a >> b;
    cout << a << " + " << b << " = " << a + b << endl;
    return 0;
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}