blechinger

Untitled

Nov 10th, 2014
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.27 KB | None | 0 0
  1. # These two solve to the same number.
  2. what = add(age, subtract(height, multiply(weight, divide(iq, 2))))
  3. YEAH =  age + height - weight * iq /2
  4. # These two do not.
  5. ALRIGHT = weight - height * age + iq / 2
  6. OK =  subtract(weight, multiply(height, add(age, divide(iq, 2))))
Add Comment
Please, Sign In to add comment