My issue
why is 9+5=14 incorrect? It has to be correct!
same as 5+9=14…
Learning course: Learn Python
Problem Link: CodeChef: Practical coding for everyone
why is 9+5=14 incorrect? It has to be correct!
same as 5+9=14…
Learning course: Learn Python
Problem Link: CodeChef: Practical coding for everyone
Hi @deogaderd .
Question: What will be the output of this code, if the user enters 5 and 9?
the below code shows that “a” can take user input as 5. means a=5 not 9 as per the given order of 5 and 9. And b=9.
so, print(a,b,a+b) gives the output as : 5 9 14. This is correct.
9 5 14 this is wrong, because the question shows 5 as first and 9 as second input.
Thank You