Help me in solving PYTH66 problem

My issue

is this any problem in the program

My code

b = int(input())
r = int(input())

if r>b:
    print("Bob Scored higher than rob")
elif r==b:
    print("Bob & Rob scored the same")

Learning course: Learn Python, Advanced Python Programming, & OOPs Concepts in Python
Problem Link: https://www.codechef.com/learn/course/rcpit-python-advanced-and-oops/RCPPY17/problems/PYTH66

1 Like

Hello @maheshpatil_39 ,
Welcome to @CodeChef Community. To run the above mentioned problem, you can refer my solution below:

b = int(input())
r = int(input())
if(r > b):
    print("Rob scored higher marks than Bob")
elif(r == b):
    print("Bob & Rob both scored the same")

Keep Learning…! Thank You :slight_smile: