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