This code proves that 2 + 2 actually equals 5:Reminds me of an old aphorism we had in college:
2 + 2 = 5, for very large values of two and very small values of five.
Python:
num1 = 2.5
num2 = 2.5
num3 = num1 + num2
print "%d + %d = %d" % (int(num1), int(num2), int(num3))
2 + 2 = 5
Last edited: