- 1
Наверное отображение. Выдаёт ошибку в калькуляторе
# место для вашего кода x = 2 y = 8 z = x + y print(int(input(z)))
3 Answers
+ 1
x = 2
y = 8
z = x + y
print(z) #!
edit:
if you need to take inputs, then use like
x = int( input() )
+ 1
* get inputs and store them in x and y
* add x and y and store in z
* print z (no input, no int)
0
x,y = map(int,input().split(" "))
print(x+y)