SnippetStack
Your one-stop hub for code snippets.
sum of 2 numbers
Edit
Delete
int a,b; cin>>a>>b; int sum = a+b; return sum;