Help me in solving PYTH66 problem

My issue

My code

b = 23
r = 45
# Update the code below to solve Task-1
if r > b:
    print("Rob Scored higher marks than Bob")
elif r == b:
    print("Bob & Rob both scored the same")
    



b = 15
r = 15
# Update the code below to solve Task-2
if r > b:
    print('Rob Scored higher marks than Bob')

elif r == b:
    print('Bob and Rob scored the same')

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

@cookingmycode
You are trying to print an incorrect statement in second case.

Instead of;

print('Bob and Rob scored the same')//incorrect

it should have been;


print("Bob & Rob both scored the same")//correct

Try changing the second elif condition print statement and then submit.