Help me in solving PYTH65 problem

My issue

my code is coorect but its showing wrong code

My code

# Update your code below this line
a = int(input())
b = int(input())
if a > b:
    print("Coding is Fun")  

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

You missed the “!” in your print statement.
print("Coding is Fun!")

1 Like

You have missed the exclaimation mark

a=int(input())
b=int(input())
if a>b:
print(“Coding is Fun!”)
else:
print()