Python Foundation | Input and Output Question 5

Last Updated :
Discuss
Comments

Find the output of the below python code, for x=5 and y= 5

Python
x = input()
y = input()
print(x+5)

10 

5

0

Compilation Error 

Share your thoughts in the comments