0
Simple Calculator
x = int(input(2)) y = int(input(8)) print(x + y) Why is this not working?
2 Respostas
+ 3
It's not necessary to add anything inside input()
x = int(input())
y = int(input())
+ 1
Also you have to give input in separate line .
For example:
5
6