Help me in solving PYTH66 problem

My issue

Not finding error

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





b = 15
r = 15
# Update the code below to solve Task-2

if r>b:
    print("rob scored more than the bob")
  elif r == b:
      
      
      print(" bob & rob both scored the same ")
    

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

@rishithagosang
U have to write exact same statement in the print like Rob and Bob have their first letter as upper case.