What is the output of this code if user enter x value as 25 and y value as 35.
x= input ("Enter a number: ")
y= input ("Enter a number: ")
print(x+y)
Select one:
a. 2535
b. 60
c. 3525
Answers
Answered by
0
b is correct
x+y = 60
because the value of x is 25 and y is 35 so the sum of x and y is 60
Similar questions