0
Pls what is wrong here
num1=input("enter a number") num2=input("enter another number") result=(int(num1)+int(num2)) print(result)
1 Answer
+ 4
nothing, you probably just input wrong. You got an EOF Error right? Enter all input at once (on seperate lines), then submit.
# RUN
# Enter input like so:
3
4
# SUBMIT
# output will be
7