Help me in solving PYTH67 problem

My issue

Where do i gone through the mistake

My code

# Update the blanks in the code below to solve the problem

r = 24
k = 32

if r > k:
    print("Ram is heavier than Karan")
elif r < k:
    print("Karan is heavier than Ram")
else:
    print("Ram & Karan have the same weight!")
    
r = 78
k = 78

if r > k:
   print("Ram is heavier than Karan")
 elif r < k:
   print("Karan is heavier than Ram")
else:
   print("Ram & Karan have the same weight!")

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

@prashanthoo7
U have left space in elif in case of 78 , 78 .
U have to take extra care of indentation in case of python.