Feedback for PYTH22 problem

Learning course: Learn Python
Problem Link: CodeChef: Practical coding for everyone

Feedback

here a=23 and b = 20
a= 23
b= 20
print( a + b)

@atharvganesh_1
U have to do it like this.

# Solution as follows

a = 20
b = 23
print( a + b )
1 Like