2558번: A+B - 2

문제접근🤔


놓쳤던 부분😅


코드😁


KB

ms

#include <iostream>
using namespace std;

int main()
{
    int a,b;

    cin >> a >> b;

    cout << a + b;

    return 0;
}