import math
x = int(input("Введите число: "))
if x < 0:
print(x * math.log1p(math.fabs(math.cos(x
if 0 <= x < 2.5:
print(1 + x**2)
if x >= 2.5:
print(x - 2)
import math
x = int(input("Введите число: "))
if x < 0:
print(x * math.log1p(math.fabs(math.cos(x
if 0 <= x < 2.5:
print(1 + x**2)
if x >= 2.5:
print(x - 2)