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