Я получаю синтаксическую ошибку, когда пытаюсь запустить свою программу, и печать в последней строке выделяется красным цветом.Я не понимаю, почему есть синтаксическая ошибка.
# 6. Calculate the radius of the circle using the
# distance formula on a given point and the center
r = math.sqrt((a-x)** + (b-y)**
# 7. Output to the shell the location of the center
# of the circle
print("The center of the circle is at (",x,",", y,")",sep="")
# 8. Output to the shell the radius of the circle
print("The radius of the circle is " , r)