Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # These two solve to the same number.
- what = add(age, subtract(height, multiply(weight, divide(iq, 2))))
- YEAH = age + height - weight * iq /2
- # These two do not.
- ALRIGHT = weight - height * age + iq / 2
- OK = subtract(weight, multiply(height, add(age, divide(iq, 2))))
Add Comment
Please, Sign In to add comment