print(round(32.3)) # round 32.3 to the nearest integer
print(round(99.7)) # round 99.7 to the nearest integer
print(round(-5.23)) # round -5.23 to the nearest integer
print(round(3.14159, 2)) # round 3.14159 to 2 decimal places
print(round(2.71828, 3)) # round 2.71828 to 3 decimal places