Comparing two formulas to round a number to an integer

For positive numbers two formula can be used to round them to integers.  This code compares their speeds.

[1] Math.round(number)
[2] int(number + 0.5)