My issue
What to do if get run time error
My code
# cook your dish here
# cook your dish here
import math
t=int(input())
while(t!=0):
n=int(input())
temp=10**(n-1)
temp1=10**n
for i in range(temp,temp1):
if(i%3==0 and i%9!=0 and i%2!=0):
print(i)
break
t-=1
Learning course: Jump from 2* to 3*
Problem Link: Make it Divisible Practice Problem in Jump from 2* to 3* - CodeChef