Skip to content

Instantly share code, notes, and snippets.

@godtaehee
Created January 11, 2019 16:33
Show Gist options
  • Save godtaehee/d672805d0bbccc4ed954d8108c5cc8a6 to your computer and use it in GitHub Desktop.
Save godtaehee/d672805d0bbccc4ed954d8108c5cc8a6 to your computer and use it in GitHub Desktop.
C++
#include <iostream>
using namespace std;
int main(){
int a,b;
cin >> a >> b;
cout << a + b << endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment