from math import gcd, lcm, pow, sqrt

# 최대 공약수 
gcd(15, 27) 

# 최소 공배수 
r2 = lcm(15, 27) 

# 제곱, 제곱근 
math.pow(2, 10), 

# 제곱근
math.sqrt(x)