Skip to content

Instantly share code, notes, and snippets.

@Baekjoon
Last active August 29, 2015 14:19
Show Gist options
  • Save Baekjoon/14ee942d391181f25388 to your computer and use it in GitHub Desktop.
Save Baekjoon/14ee942d391181f25388 to your computer and use it in GitHub Desktop.
a+b
#include <iostream>
using namespace std;
int main() {
int a = 5, b = 6;
cout << a + b << endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment