Skip to content

Instantly share code, notes, and snippets.

@degurii
Created June 26, 2018 20:44
boj) 1000 A + B
#include <iostream>
using namespace std;
int a, b;
int main(){
cin >> a >> b;
cout << a + b;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment