Help me in solving PYTH73 problem

My issue

a, c = map(int, input().split()) why use

My code

a, c = map(int, input().split())      # Will cover this syntax for accepting multiple inputs later

# Update the code below this line to complete Task 1
if a>=c :
    print("Brovo!")
else:
    print("Try again")






a, c = map(int, input().split())     # Will cover this syntax for accepting multiple inputs later

# Update the code below this line to complete Task 2
if a>=c :
    print("Bravo!")
else:
    print("Try again")

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

we use it to give input in one line and we use split to seperate input like space,commas…etc