- 1

Наверное отображение. Выдаёт ошибку в калькуляторе

# место для вашего кода x = 2 y = 8 z = x + y print(int(input(z)))

2nd May 2022, 11:45 AM
Mila Shatohina
Mila Shatohina - avatar
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() )
2nd May 2022, 11:50 AM
Jayakrishna 🇮🇳
+ 1
* get inputs and store them in x and y * add x and y and store in z * print z (no input, no int)
2nd May 2022, 11:52 AM
Lisa
Lisa - avatar
0
x,y = map(int,input().split(" ")) print(x+y)
2nd May 2022, 4:39 PM
Subhadeep Mandal
Subhadeep Mandal - avatar