Contact: aviboots(AT)netvision.net.il
40,849 questions
53,254 answers
573 users
import math result = math.floor(5.99) print(result) print(math.floor(5.5)) print(math.floor(5.1)) print(math.floor(-6.9)) print(math.floor(-6.1)) ''' run: 5 5 5 -7 -7 '''