print(round(3.5))

# >= 3.5 = 4
# < 3.5 = 3

print(abs(-10))

print(len('Hello'))

print(min(435, 32, 23, 2))
print(max(435, 32, 23, 2))