Skip to content

Instantly share code, notes, and snippets.

@Baekjoon
Created April 15, 2015 18:25
Show Gist options
  • Save Baekjoon/df3d3f3d628417b8086d to your computer and use it in GitHub Desktop.
Save Baekjoon/df3d3f3d628417b8086d to your computer and use it in GitHub Desktop.
a+b
#include <iostream>
using namespace std;
int main() {
int a = 5;
int 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