Help me in solving PYTH65 problem

My issue

Code for second sample

My code

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

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

@prashanthoo7

I do not think there is even a need for else condition here as we aren’t required to print anything if (a<=b).

Here is my code for reference.

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

no need to go for else here is my guide


a=int(input())
b=int(input())
if(a>b):
    print('Coding is Fun!')

no need of else loop