• + 0 comments
    # Not sure what I did wrong maybe format ? : 
    
    test = int(input()) # enter testcase
    vals = input().split() # [1,0,2,1,3,4]
    clean = list(map(int,vals))
    l = 0
    r  = 1
    
    try:
      while r < len(clean):
        print(clean[l]//clean[r])
        r+=2
        l+=2
    except ZeroDivisionError as e:
        print(f"Error Code:",e)
        print(test)
    except ValueError as v:
        print(f"Error code:",v)