Skip to content

Instantly share code, notes, and snippets.

@keehyun2
Created January 14, 2018 07:24
Show Gist options
  • Save keehyun2/e80560910e2195541749005626459c72 to your computer and use it in GitHub Desktop.
Save keehyun2/e80560910e2195541749005626459c72 to your computer and use it in GitHub Desktop.
#include <iostream>
#include <string>
using namespace std;
int main()
{
int a, b;
cin >> a >> b;
cout << a + b << endl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment