Help me in solving PYTH66 problem

My issue

i am not able to identify the error that i made in this problem

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 and 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 both scored the same")

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

@rishisai23 your code is right you can submit it for output.