Last active
July 12, 2020 13:51
-
-
Save codertcet111/f4ed195bb3df6d76701e2753f673d876 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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