Help me in solving PYTH66 problem

My issue

whats the mistake here? it shows wrong answer

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

THERE IS NO ERROR

The problem is your code is giving the wrong output…
for Example :-
u have to print this --‘‘Rob Scored higher marks than Bob’’–
but your code gives output–“rob scored higher marks than bob”
(in your code all alphabet is in small letter but if u see in the question some alphabet is in capitals letter)
kindly print your output according to the question
otherwise everything correct in your code