Help me in solving PYTH73 problem

My issue

Why this is not possible in this way pls explain

My code

# Task-1
a = int(input("Enter the first integer for Task-1: "))
c = int(input("Enter the second integer for Task-1: "))
if a >= c:
    print("Bravo!")
else:
    print("Try again")

# Task-2
a = int(input("Enter the first integer for Task-2: "))
c = int(input("Enter the second integer for Task-2: "))
if a >= c:
    print("Bravo!")
else:
    print("Try again")

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

@shreyash2046
U have to do it with printing extra statements like this

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

# Solution as follows

if a >= c:
    print("Bravo!")
else:
    print("Try again")


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

# Solution as follows

if a >= c:
    print("Bravo!")
else:
    print("Try again")

Thanks :slight_smile: