Help me in solving BMC07 problem

My issue

My code

# Update the code below to solve the problem

t = int(input())
for i in range(t):
    t1, t2, r1, r2 = map(int,input().split() 
    planet1 = (t1**2)/(r1**3)   
    planet2 = (t2**2)/(r2**3) 
    
    if planet1 == planet2:
        print('Yes')
    else:
        print('No')

Learning course: Python for problem solving - 2
Problem Link: CodeChef: Practical coding for everyone

You made just a minor mistake.
You forgot to end a bracket while taking input :
t1,t2,r1,r2 = map(int,input().split()) // Here you closed only one bracket.
Hope, it helps.:slight_smile: