Skip to content

Instantly share code, notes, and snippets.

@darkspadez
Created January 22, 2010 00:34
Show Gist options
  • Save darkspadez/283368 to your computer and use it in GitHub Desktop.
Save darkspadez/283368 to your computer and use it in GitHub Desktop.
#include <iostream>
using namespace std;
int main ()
{
int a=5;
int b=2;
int r;
r = a - b;
cout << r;
cin.get();
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment