백준 algorithm

백준 2558 - A+B-2

cosmohoo 2020. 2. 12. 09:29
반응형

문제 설명

#include <iostream>
#include <vector>
#include <utility>
#include <algorithm>

using namespace std;

int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
    cout.tie(nullptr);
    int A, B;
    cin >>A>>B;
    cout<<A+B;
}
반응형