Код к задаче: Python 3.7.0
x = int(input())
print(f'y = {0.5 * x}' if (x < 0) else f'y = {x + 2}')
Tests:
#1
>>> -5
>>> y = - 2.5
#2
>>> 59
>>> y = 61
Объяснение:
Код к задаче: Python 3.7.0
x = int(input())
print(f'y = {0.5 * x}' if (x < 0) else f'y = {x + 2}')
Tests:
#1
>>> -5
>>> y = - 2.5
#2
>>> 59
>>> y = 61
Объяснение: