Less Than 100?

Published by zatoichi49 in

Given two numbers, return true if the sum of both numbers is less than 100. Otherwise return false.

Examples

lessThan100(22, 15) ➞ true
// 22 + 15 = 37

lessThan100(83, 34) ➞ false
// 83 + 34 = 117

lessThan100(3, 77) ➞ true

Notes

N/A

Watch a quick demo on how Edabit works.