Help me in solving PYTH66 problem

My issue

why it’s showing answer can you justifie

My code

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


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

@sabhavathsweth
U have to write exactly same in the print statement
like u have written Bob and bob in one print statement just correct mistakes like that .