0
I have a problem to solve simple calculator.. This is my code.. I don't know what is the problem..
#simple Calculator x=input () x=int print (x) y=input() y=int print (y) z=9 z=(x+y)
2 ответов
+ 5
it should be like
x = int(input())
Or
x = input()
x= int(x)
0
Tq