
import newton_raphson as nr


def main():
    TEST = 29
    EPSILON = .01
  
    n=5
    
    print( nr.nth_root(TEST,n,EPSILON))
main()
