Answer:
import math
first = float(input("What is your first number? "))
second = float(input("What is your second number? "))
print("The square root of your first number is", math.sqrt(first))
print("The square root of your second number is", math.sqrt(second))