Determine if the sum is less than or equal to 100
A function that receives two numbers, return true if the summation of the numbers is less than or equal to 100.
Sample Code:
def hundredPlus(num1, num2):
# Enter your logic here...
Examples:
Input: 1,100
Output: False
Explanation: 1+100 equals to 101 which is not less than 100 or equal to 100.
Input: 50,50
Output: True
Explanation: 50+50 is equal to 100.