import math
def sqrt_root(num):
 sqrt_root = math.pow(num, 0.5)
 return sqrt_root