Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save codertcet111/f4ed195bb3df6d76701e2753f673d876 to your computer and use it in GitHub Desktop.
Save codertcet111/f4ed195bb3df6d76701e2753f673d876 to your computer and use it in GitHub Desktop.
Algorithm sum(a, b)
// Problem: Addition of two numbers
//Input: Two input values
//Output: One number
//MAX_VALUE = Maximum integer value as supported by the programming language
//Range of Input: a and b are from '0 to MAX_VALUE'
c = a + b
return c
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment