its related to proble code-- ELEVSTRS
my lang- pthon 3
my code is logically correct and running fine on my compiler and i also tried on an online compiler but showing runtime error on submission
import math
T = input("No of tests")
while T!=0:
N=float(input())
V1=float(input())
V2=float(input())
T1 = float((math.sqrt(2)*N)/V1)
T2 = (2*N)/V2
if T1<T2:
print("Stairs")
else:
print("Elevator")