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