Ответ:
x = int(input('Чему равен x?'))
if x < 0:
x = x ** 2
else:
x = x + 5
print(x)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
x = int(input('Чему равен x?'))
if x < 0:
x = x ** 2
else:
x = x + 5
print(x)