Help me in solving PYTH66 problem

My issue

My code

b = 23
r = 45
# Update the code below to solve Task-1
# Solution for Task-1
if r > b:
    print("Rob scored higher than Bob")
elif r == b:
    print("Bob $Rob both sored the same")




b = 15
r = 15
# Update the code below to solve Task-2
# Solution for Task-2
if r > b:
    print("Rob scored higher than Bob")
else r == b:
    print("Bob $Rob both sored the same")


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

You have used “$Rob” in the print statement, change that to & Rob.

b = 23
r = 45
if r > b:
print(“Rob Scored higher marks than Bob”)
elif r == b:
print(“Bob & Rob both scored the same”)

b = 15
r = 15
if r > b:
print(“Rob Scored higher marks than Bob”)
elif r == b:
print(“Bob & Rob both scored the same”)

In the problem given in the statement on else if condition so r>b the execute the first statement and r==b execute the second statement

change $Rob to !Rob and run the code