#Math Functions
round #round down for number less than 5 and round up for number egual to or greater than 5
abs #absolute value means no negative numbers
#round
print(round(3.1)) #Answer: 3
print(round(3.5)) #Answer: 4
#abs
print(abs(-20)) #Answer: 20