Help me in solving PYTH66 problem

My issue

i have written code correctly 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("Bob & Rob both scord 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 & Rob scored the same")

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

@sana_2002
just some minor errors
when you copy the output of program and paste it inside print statement it works fine i think there is unnessasary space keys used
Hope it helps!

@sana_2002
Just check the spelling of scored and u haven’t written both in second part .