Determine the integer floor of the sum of
two floating point numbers. The floor is the
truncated float value, i.e. anything after the
decimal point is dropped.

Example
floor(1.1 +3.89) = floor(4.99) = 4.



Answer :

Other Questions