2 Answers
+ 2
if input x == '5' ans y == '6', then x+y == '56'... because input() always return a string (str) type.
to get number, you need to use int() or float() to convert it as number...
then if x == 5 and x == 6, then x+y == 11.
but if x and y are not of 'compatible' type (ie x == 5 and y == '6'), you will get an error ;)
0
Code goes.Thanks a lot.