My issue
Unable to understand how to approach this problem
My code
# cook your dish here
t=int(input())
for i in range(t):
L,V1,V2=map(int,input().split())
a,b=map(int,input())
a=L//V1
b=L//V2
if(a<b):
print ("win")
else:
print("-1")
Problem Link: SMARTER Problem - CodeChef