Skip to content

Instantly share code, notes, and snippets.

@Baekjoon
Created April 15, 2015 18:33
Show Gist options
  • Save Baekjoon/b92a470c5ad3c7aa1a98 to your computer and use it in GitHub Desktop.
Save Baekjoon/b92a470c5ad3c7aa1a98 to your computer and use it in GitHub Desktop.
a+b
#include <stdio.h>
int main() {
int a,b;
scanf("%d %d",&a,&b);
printf("%d\n",a+b);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment