def main():
    try:
        opts = {1,2,3}
    except:
        pass
    for opt in opts:
        print( opt )
        
main()