Help me in solving PYTH66 problem

My issue

I wrote the code correctly but it is showing wrong

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("rob & bob 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("rob & bob both scored the same ")

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

b = 23
r = 45

if r > b:
print(“Rob scored higher marks than Bob”)
elif r == b:
print(“Rob & Bob both scored the same”)

solution for the 2 task

b = 15
r = 15

if r > b:
 print("Rob scored higher marks than Bob")
elif r == b:
 print("Rob & Bob both scored the same ")

@praneetha8104
U have to right the printing statement same as it is given in the problem statement.