1. Результат выполнения операторов:
print(abs(a))
a = 2.3
2
a = -3.7
3
print(round(a))
-4
print(int(a))
-3